Cod sursa(job #2644472)

Utilizator iepuretony4Iepure Antoniu iepuretony4 Data 24 august 2020 18:17:22
Problema A+B Scor 100
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.27 kb
#include <iostream>
#include <math.h>
#include <iomanip>
#include <cmath>
#include <fstream>
#include <algorithm>

using namespace std;

ifstream fin("adunare.in");
ofstream fout("adunare.out");

int a, b;

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