Cod sursa(job #593010)
| Utilizator | Data | 31 mai 2011 20:19:08 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
int main()
{
long a, b;
ifstream ins ("adunare.in");
ins>>a>>b;
ofstream ous ("adunare.out");
ous<<a+b;
return 1;
}