Cod sursa(job #394192)
Utilizator | Data | 10 februarie 2010 17:35:44 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.13 kb |
#include<fstream.h>
void main(){
ifstream fin("date.in");
ofstream fout("date.out");
int a,b,s;
fin>>a>>b;
s=a+b;
fout<<s;
}