Cod sursa(job #1010202)
Utilizator | Data | 14 octombrie 2013 15:22:16 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.18 kb |
# include <fstream>
using namespace std;
ifstream fin("A+B.in");
ofstream fout("A+B.out");
int main ()
{
float a,b;
fin>>a;
fin>>b;
fout<<a+b;
return 0;
}