Cod sursa(job #749727)
Utilizator | Data | 18 mai 2012 14:46:12 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<fstream.h>
#include<iostream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main () {
long a,b;
f >> a >> b;
g << a+b;
return 0;
}