Cod sursa(job #3162660)
| Utilizator | Data | 29 octombrie 2023 17:05:59 | |
|---|---|---|---|
| Problema | A+B | Scor | 0 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.23 kb |
#include <iostream>
#include <fstream>
#include<iomanip>
#include<algorithm>
#include <cmath>
using namespace std;
ifstream fin ("adunare.in");
ofstream fout ("adunare.out");
{
long long a,b;
fin>>a>>b;
fout<<a+b;
}
