Cod sursa(job #1258335)
Utilizator | Data | 8 noiembrie 2014 19:05:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.21 kb |
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{int a,b,S;
fin>>a>>b;
S=a+b;
fout<<S;
fin.close();
fout.close();
return 0;
}