Cod sursa(job #3122965)
Utilizator | Data | 21 aprilie 2023 13:28:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<bits/stdc++.h>
using namespace std;
ifstream in ("adunare.in");
ofstream out ("adunare.out");
int main() {
int a, b;
in >> a >> b;
out << a+b;
return 0;
}