페이지

10953번: A+B - 6

https://www.acmicpc.net/problem/10953


$O(1)$


#include<cstdio>
int t, a, b;
int main() {
    scanf("%d", &t);
    while (t--)scanf("%d,%d", &a, &b), printf("%d\n", a + b);
    return 0;
}

댓글 없음 :

댓글 쓰기