#include <stdio.h>

int x= 7;
int y= 23;
int main(void)
{
	if (x<y)
		printf("x menor");
	else
		printf("y mayor o igual");	
	return 0;
}
