Cod sursa(job #823986)
Utilizator | Data | 25 noiembrie 2012 19:46:43 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.2 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;
}