example.test.cpp
- View this file on GitHub
- Last update: 2025-07-17 16:04:21+09:00
- Problem: https://judge.yosupo.jp/problem/aplusb
Code
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
#include <iostream>
int main(){
int a,b;
std::cin >> a >> b;
std::cout << a+b << "\n";
}#line 1 "example.test.cpp"
#define PROBLEM "https://judge.yosupo.jp/problem/aplusb"
#include <iostream>
int main(){
int a,b;
std::cin >> a >> b;
std::cout << a+b << "\n";
}