Cod sursa(job #399102)

Utilizator andrei.royal777butnaras andrei andrei.royal777 Data 19 februarie 2010 20:41:35
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.15 kb

#include<fstream.h>

int main(){
ifstream f("adunare.in");
ofstream g("adunare.out");
long double a,b,c;
f>>a>>b;
c=a+b;
g<<c; return 0; }