Cod sursa(job #97812)
| Utilizator | Data | 8 noiembrie 2007 22:33:07 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp | Status | done |
| Runda | Arhiva de probleme | Marime | 0.21 kb |
#include <iostream.h>
#include <conio.h>
#include <math.h>
#include <fstream.h>
double b,a;
int main()
{
ifstream f("adunare.in");
ofstream q("adunare.out");
f >> b >>a;
q <<a+b;
return 0;
} 