#include <stdio.h>

int main(void) {
	int x,y;
	x=5;
	if(x<3){
	printf("xは小さい\n");
	}else{
	printf("xは大きい\n");
	}
	return 0;
}
