templates

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

View the Project on GitHub plasmatic1/templates

:heavy_check_mark: tests/aplusb.test.cpp

Code

#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
#include <bits/stdc++.h>
using namespace std;
int main(){
    long long a, b;
    cin>>a>>b;
    cout<<a+b<<'\n';
}
#line 1 "tests/aplusb.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
#include <bits/stdc++.h>
using namespace std;
int main(){
    long long a, b;
    cin>>a>>b;
    cout<<a+b<<'\n';
}
Back to top page