Cod sursa(job #2695652)
Utilizator | Data | 14 ianuarie 2021 08:27:41 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.24 kb |
#include <iostream>
#include <fstream>
#include <cmath>
#include <cstring>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main()
{
long long a, b;
fin >> a >> b;
fout << a + b;
}