Cod sursa(job #2676481)

Utilizator Rareshhh2601Alexandrescu Rares Rareshhh2601 Data 24 noiembrie 2020 14:32:03
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.19 kb
#include<iostream>
#include<fstream>
using namespace std;
int a,b;
fstream fin("adunare.in");
ofstream fout("adunare.out");


int main ()
{
    fin>>a>>b;
    fout<<a+b;
}