#include using namespace std; int main() { /* (x-11)/3=(x+1)/4 4(x-11)=3(x+1) 4x-44=3x+3 x=47*/ cout << 47 << " " << 12 << endl; return 0; }