#include using namespace std; typedef long long ll; int main() { ll r, x, y; cin >> r >> x >> y; cout << x * 3 << " " << y * 3 << endl; return 0; }