Cod sursa(job #2327485)

Utilizator MAXIMILLIANMUSOHYEAHYEAH MAXIMILLIANMUS Data 24 ianuarie 2019 19:11:07
Problema A+B Scor 0
Compilator cpp-32 Status done
Runda Arhiva de probleme Marime 0.3 kb
#include <fstream.h>
#include <iostream.h>
 
int main(void)
{
     signed long a,b;
     
     fstream fin("adunare.in", ios::in);
     fin >> a;
     fin >> b;
     fin.close();
     
     fstream fout("adunare.out", ios::out);
     fout << (a + b);
     fout.close();
     
     return(0);
}