#include <stdio.h>

int main() {
int a,b;
	a=5;
	b=3;

	if (a < b) {
		printf("aはbより小さいです\n");
	} else {
		printf("aはbより大きいです\n");
	}
}