https://www.acmicpc.net/problem/10953
나의 해결방법
,
는 입력해줘야하지만 결과값에 영향을 미치는것이 아니므로
그냥 단지 입력해주는 역할만 한다.
#include<iostream>
using namespace std;
int main()
{
int tc;
cin >> tc;
char c;
int a, b;
for (int i = 0; i < tc; i++) {
cin >> a >> c >> b; //콤마는 그냥 입력만해주는 역할(?)
cout << a + b << endl;
}
return 0;
}