Cod sursa(job #617523)
Utilizator | Data | 14 octombrie 2011 23:30:15 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | teme_upb | Marime | 0.19 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;
return 0;
}