#include<iostream>
using namespace std;

int x=1, y=48;
int main()
{
	if(x*2+y*4==100)
	 
	else
            x=x++;
	   y=y--;
	    
  cout<<x<<y<<endl;
  reture 0;
}