Cod sursa(job #2924005)
Utilizator | Data | 22 septembrie 2022 20:30:05 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.33 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int tt = 1;
//fin >> tt;
while(tt--) {
int a, b;
fin >> a >> b;
fout << a + b << '\n';
}
return 0;
}