Cod sursa(job #1977138)
Utilizator | Data | 5 mai 2017 08:30:25 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
#include<iostream.h>
#include<fstream.h>
int main()
{
ifstream f("adunare.in");
ofstream g("adunare.out");
float a,b;
f>>a;
f>>b;
g<<a+b;
f.close();
g.close();
}