//c how to program 习题2.16
#include <stdio.h>
int main(void)
{
int x, y;
printf("请分别输入两个整数:");
scanf("%d%d",&x,&y);
printf("它们的积是:%d\n", x*y);
printf("它们的和是:%d\n", x+y);
printf("它们的商是:%d\n", x/y);
printf("它们的差是:%d\n", x-y);
printf("它们余数是:%d\n", x%y);
}