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