#include #include using namespace std; using i32 = int; using i64 = long long; using f64 = long double; using i128 = __int128_t; using p2 = pair; using el = tuple; using mint = atcoder::modint998244353; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } i128 pow(i128 x, i128 n, i128 m) { i128 res = 1; i128 t = x % m; while (n > 0) { if (n & 1) { res = res * t % m; } t = t * t % m; n >>= 1; } return res; } void _main() { i64 r, gx, gy; cin >> r >> gx >> gy; cout << 3 * gx << " " << 3 * gy << "\n"; }