Cod sursa(job #1991977)

Utilizator Pami1928Popescu Andrei Gabriel Pami1928 Data 18 iunie 2017 22:31:29
Problema A+B Scor 100
Compilator cpp Status done
Runda Arhiva de probleme Marime 0.21 kb
#include<fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main(){
double a,b;
fin.seekg(ios::beg);
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
}