#include using ll = long long; using namespace std; int main() { ll R, X, Y; cin >> R >> X >> Y; cout << 3LL * X << " " << 3LL * Y; return 0; }