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/aplusb/cstdio.test.cpp

Code

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

int main() {
    int A, B; scanf("%d%d", &A, &B);
    printf("%d\n", A + B);
    return 0;
}
#line 1 "verifying_test/yosupo/sample/aplusb/cstdio.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
#include <cstdio>

int main() {
    int A, B; scanf("%d%d", &A, &B);
    printf("%d\n", A + B);
    return 0;
}
Back to top page