Cod sursa(job #13017)
Utilizator | Data | 5 februarie 2007 14:15:53 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
int a,b;
int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
f>>a>>b;
g<<a+b;
return 0;}