#include <stdio.h>

int main(void) {
	// your code goes here
	puts("hoge");
	int a=42;
	puts("fuga");
	printf("%d\n",a*2-a);
	return 0;
}
