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