Cod sursa(job #2370153)
Utilizator | Data | 6 martie 2019 10:55:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.36 kb |
#include <iostream>
#include <fstream>
#include <string>
#include <cmath>
#include <vector>
#include <stdlib.h>
#include <algorithm>
using namespace std;
int main() {
ifstream fin("adunare.in");
ofstream fout("adunare.out");
long long a,b;
fin>>a>>b;
fout<<a+b;
fin.close();
fout.close();
return 0;
}