Cod sursa(job #560628)
Utilizator | Data | 18 martie 2011 16:51:27 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include <iostream.h>
#include<fstream.h>
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a,b,s;
int main()
{fin>>a;
fin>>b;
s=a+b;
fout<<s;
return 0;
}