#include int main() { int a, b; scanf("%d,%d", &a, &b); // カンマ区切りで2つの整数を読み込む printf("%d\n", a + b); // その合計を出力する return 0; }