Cod sursa(job #496291)
Utilizator | Data | 28 octombrie 2010 12:23:19 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.16 kb |
#include<iostream.h>
#include<fstream.h>
int a,b;
void main(){
ifstream f("date.in");
ofstream g("date.out");
f>>a;f>>b;
g<<a+b;
f.close();
g.close();}