Cod sursa(job #256946)
Utilizator | Data | 12 februarie 2009 15:21:36 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.17 kb |
#include<fstream.h>
int main()
char a,b;
{
ifstream in("adunare.in");
ofstream out("adunare.out");
in>>a;
in>>b;
out<<a+b;
in.close();
out.close();
return 0;
}