Cod sursa(job #311116)
| Utilizator | Data | 2 mai 2009 16:22:32 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | super_easy | Marime | 0.16 kb |
#include<fstream.h>
int main(void) {
long int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
f.close();
g.close();
return 0; }