Cod sursa(job #353290)
Utilizator | Data | 4 octombrie 2009 16:33:50 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include<fstream.h>
#include<conio.h>
#include<string.h>
void main()
{
clrscr();
ifstream f("adunare.in");
ofstream g("adunare.out");
char x,y,s;
f.get(x);
f.get(y);
s=x+y;
g<<
g.close();
f.close();
}