#includeint main(){ int a,b,c; printf("Input A and B:"); scanf("%d,%d",&a,&b); c=a-b; printf("A-B is %d\n",c); return 0; system("pause"); //加多这个看看!}