Cod sursa(job #617533)
Utilizator | Data | 14 octombrie 2011 23:51:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.22 kb |
#include<iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
using namespace std;
int main()
{ long a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}