Cod sursa(job #2747489)
Utilizator | Data | 29 aprilie 2021 11:42:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.25 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin;
ofstream fout;
fin.open("adunare.in");
fout.open("adunare.out");
int a ,b ;
cin >> a >> b;
cout << a + b;
return 0;
}