Cod sursa(job #946535)
| Utilizator | Data | 4 mai 2013 18:51:51 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int long a,b;
int main()
{f>>a;
f>>b;
g<<a+b;
}