Cod sursa(job #1713112)
| Utilizator | Data | 4 iunie 2016 18:49:20 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
using namespace std;
long long int x,y;
int main()
{
ifstream fin("adunare.in");
ofstream fout("adunare.out");
fin>>x>>y;
fout<<x+y;
fin.close();
fout.close();
return 0;
}
