Cod sursa(job #1431311)
Utilizator | Data | 9 mai 2015 10:28:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <fstream>
using namespace std;
int main()
{
ifstream fin("adunare.in");
int a, b;
fin >> a >> b;
fin.close();
ofstream fout("adunare.out");
fout << a + b;
fout.close();
return 0;
}