#include using namespace std; int main(){ double r,x,y; cin >> r >> x >> y; x *= 3; y *= 3; cout << x << " " << y << endl; }