Cod sursa(job #2926349)
Utilizator | Data | 17 octombrie 2022 18:32:10 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <bits/stdc++.h>
#include <algorithm>
using namespace std;
#define max_size 101
int main()
{
std::ifstream fin("adunare.in");
std::ofstream fout("adunare.out");
long long a, b;
fin >> a >> b;
fout << a + b;
}