Cod sursa(job #673117)
| Utilizator | Data | 3 februarie 2012 21:29:52 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.2 kb |
using namespace std;
#include<fstream>
int main()
{long long a,b;
ifstream fcin("adunare.in");
ofstream fcout("adunare.out");
fcin>>a>>b;
fcout<<a+b;
fcin.close();
fcout.close();
return 0;
}