Cod sursa(job #398952)
Utilizator | Data | 19 februarie 2010 17:55:57 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include<fstream.h>
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(){
int a,b;
f>>a>>b;
g<<a+b;
//f.close();
//g.close();
}