Cod sursa(job #995455)
| Utilizator | Data | 8 septembrie 2013 21:47:39 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.22 kb |
#include<iostream>
#include<fstream>
using namespace std;
ifstream p("adunare.in");
ofstream g("adunare.out");
int main()
{
int a,b;
p>>a>>b;
g<<a+b;
p.close();
g.close();
return 0;
}
