Cod sursa(job #2644470)
Utilizator | Data | 24 august 2020 18:16:41 | |
---|---|---|---|
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;
}