Cod sursa(job #2341063)
Utilizator | Data | 11 februarie 2019 15:18:43 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-32 | Status | done |
Runda | sem2_1 | Marime | 0.21 kb |
#include <fstream>
#include <iostream>
using namespace std;
int main()
{
ifstream fin("adunare.in")
ofstream fout("adunare.out")
int a,b;
fin>>a>>b;
fout<<a+b<<endl;
return 0;
}