Cod sursa(job #498630)
Utilizator | Data | 5 noiembrie 2010 17:32:28 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<iostream.h>
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int a,b;
int main()
{
f>>a>>b;
g<<a+b;
system("pause");
}