Cod sursa(job #613401)
Utilizator | Data | 24 septembrie 2011 09:50:25 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include <iostream>
#include<fstream>
using namespace std;
ifstream i("adunare.in");
ofstream o("adunare.out");
int main()
{long a,b;
i>>a>>b;
o<<a+b;
return 0;}