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