Cod sursa(job #1012867)
| Utilizator | Data | 19 octombrie 2013 18:49:55 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include<iostream>
#include<fstream>
using namespace std;
int main()
{
int a,b;
ifstream fin("cifra.in");
ofstream fout("cifra.out");
fin>>a;
fin>>b;
fout<<a+b;
return 0;
}
