Cod sursa(job #399099)
| Utilizator | Data | 19 februarie 2010 20:40:14 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.19 kb |
#include<iostream.h>
#include<conio.h>
#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; }
