Cod sursa(job #503450)
Utilizator | Data | 22 noiembrie 2010 22:11:30 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
int a,b;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
f>>a>>b;
g<<a+b;
return 0;
}