Cod sursa(job #671513)
Utilizator | Data | 31 ianuarie 2012 16:50:21 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<fstream>
using namespace std;
int main()
{
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
long long a, b;
fin >> a >> b;
fout << a+b;
return 0;
}