//c how to program 习题2.18
#include <stdio.h>
int main(void)
{
int x, y;
printf("请输入两个整数:");
scanf("%d%d", &x, &y);
if(x > y){
printf("%d is larger\n", x);
}
if(x < y){
printf("%d is larger\n", y);
}
if(x == y){
printf("These numbers are equal\n");
}
}