#include<stdio.h> void main() { int a,b,sum; scanf("%d,%d",&a,&b); sum = a+b; printf("sum is:%d\n",sum); getch(); }