Cod sursa(job #1730407)
Utilizator | Data | 16 iulie 2016 21:29:08 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.22 kb |
#include <iostream>
#include <fstream>
using namespace std;
double x, y;
int main() {
ifstream in("adunare.in");
ofstream out("adunare.out");
in >> x >> y;
out << (x + y) << endl;
return 0;
}