#include <stdio.h> int main() { int a,b; if(scanf("%d%d",&a,&b) == 2) printf("a=%d,b=%d",a,b); else printf("输入错误!"); return 0; }