cpp_library

This documentation is automatically generated by online-judge-tools/verification-helper

This project is maintained by tsutaj

:heavy_check_mark: verifying_test/yosupo/sample/many_aplusb/cstdio.test.cpp

Code

#define PROBLEM "https://judge.yosupo.jp/problem/many_aplusb"
#include <cstdio>

void solve() {
    long long int A, B; scanf("%lld%lld", &A, &B);
    printf("%lld\n", A + B);
}

int main() {
    int T; scanf("%d", &T);
    while(T--) solve();
    return 0;
}
#line 1 "verifying_test/yosupo/sample/many_aplusb/cstdio.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/many_aplusb"
#include <cstdio>

void solve() {
    long long int A, B; scanf("%lld%lld", &A, &B);
    printf("%lld\n", A + B);
}

int main() {
    int T; scanf("%d", &T);
    while(T--) solve();
    return 0;
}
Back to top page