#include <stdio.h>main(){int a,b;int sub;a=6;b=9;scanf("%d,%d",&a,&b);sub=a-b;printf("sub=%d\n",sub);return 0;}
输入要以逗号分割就行