#include <stdio.h>
int main () {
	
	int tishka = 23;
	int tuzik = 228;
	

	printf ("%d %d", tishka, tuzik);
	
	return 0;
}
