# include <stdio.h> int main(void) { int a, b; if (scanf("%d %d",&a,&b) != 1 ) { printf ("函数scanf返回值不等于1."); } return 0; }