Cod sursa(job #583084)
| Utilizator | Data | 17 aprilie 2011 22:26:30 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream.h>
#include<fstream.h>
fstream f("adunare.in",ios::in),
g("adunare.out",ios::out);
int main()
{
int a,b;
f>>a>>b;
g<<a+b;
}