library_for_cpp

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

View the Project on GitHub Kazun1998/library_for_cpp

:heavy_check_mark: verify/yosupo_library_checker/sample/a_plus_b.test.cpp

Code

#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"

#include<bits/stdc++.h>

using namespace std;

int main () {
    int A, B;
    cin >> A >> B;
    cout << A + B << endl;
}
#line 1 "verify/yosupo_library_checker/sample/a_plus_b.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"

#include<bits/stdc++.h>

using namespace std;

int main () {
    int A, B;
    cin >> A >> B;
    cout << A + B << endl;
}
Back to top page