test/sample.test.cpp
- View this file on GitHub
- Last update: 2022-06-26 19:41:05+09:00
- Problem: https://judge.yosupo.jp/problem/aplusb
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 << '\n';
return 0;
}
#line 1 "test/sample.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 << '\n';
return 0;
}