Cod sursa(job #1524370)
Utilizator | Data | 13 noiembrie 2015 23:41:40 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
int main()
{
ifstream fin("suma.in");
ofstream fout("suma.out");
int a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
return 0;
}