#include int main(void) { int a; int b; //printf("カンマ区切りで数字を入力してください\n"); scanf("%d,%d",&a,&b); int ans = a + b; printf("%d\n", ans); return 0; }