Cod sursa(job #570268)
Utilizator | Data | 2 aprilie 2011 19:33:09 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream.h>
#include<fstream.h>
int main ()
{
int a,b;
ifstream g("adunare.in");
ofstream z("adunare.out");
g>>a>>b;
z<<a+b;
}