Cod sursa(job #752312)
Utilizator | Data | 28 mai 2012 12:51:59 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<iostream.h>
#include<fstream.h>
int a,b;
void main ()
{
ifstream f("adunare.in");
f>>a;
f>>b;
ofstream h("adunare.out");
h<<a+b;
}