Cod sursa(job #505927)

Utilizator AlexandruTudoseTudose Alexandru AlexandruTudose Data 4 decembrie 2010 15:25:16
Problema A+B Scor 0
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.16 kb
#include<fstream.h>
int a,b,s;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main()
{
f>>a>>'\n';
f>>b;
s=a+b;
g<<s;
g.close();
return 0;
}