페이지

11021번: A+B - 7

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


$O(1)$


#include<cstdio>
int t, a, b;
int main() {
    scanf("%d", &t);
    for (int i = 1; i <= t; i++) scanf("%d %d", &a, &b), printf("Case #%d: %d\n", i, a + b);
    return 0;
}

댓글 없음 :

댓글 쓰기