#include <stdio.h>
int main()
{
	int a =10;
	int b =20;
	printf("%d\n", a+b);
	printf("%d\n", 4+5);
	return 0;
}