Cod sursa(job #2222984)
| Utilizator | Data | 18 iulie 2018 19:05:46 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | teme_upb | Marime | 0.21 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{ int a,b,s=0;
fin>>a;
fin>>b;
s=a+b;
fout<<s;
return 0;
}
