Cod sursa(job #1985021)
| Utilizator | Data | 26 mai 2017 18:04:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <bits/stdc++.h>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int a, b;
int main() {
fin >> a >> b;
fout << a + b << '\n';
fout.close();
return 0;
}
