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