Cod sursa(job #2809321)
Utilizator | Data | 26 noiembrie 2021 17:49:50 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.37 kb |
#include <iostream>
#include <fstream>
#include <cstring>
#include <string>
#include <algorithm>
#include <cmath>
#include <vector>
#include <map>
#include <unordered_map>
#include <stdio.h>
using namespace std;
ifstream in("adunare.in");
ofstream out("adunare.out");
int main()
{
int a, b;
in >> a >> b;
out << a + b << "\n";
return 0;
}