#include int main(void) { int a, b; scanf("%d,%d", &a, &b); // カンマ区切りで読み込み printf("%d\n", a + b); // 足し算の結果を出力 return 0; }