#include <stdio.h>int main(){int a,b,c;scanf("%d,%d",&a,&b);c=a*b;printf("%d\n",&c);return 0;}
scanf("%d %d",&a,&b);c=a*b;printf("%d\n",c);
输入要加逗号