Cod sursa(job #2893154)
| Utilizator | Data | 25 aprilie 2022 12:51:37 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | teme_upb | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
int nr1, nr2, s;
cin >> nr1 >> nr2;
s = nr1 + nr2;
fout << s;
return 0;
}