Cod sursa(job #2617635)
Utilizator | Data | 22 mai 2020 15:18:23 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.2 kb |
#include <bits/stdc++.h>
#include <fstream>
using namespace std;
int main()
{
ifstream("adunare.in");
ofstream("adunare.out");
int a, b;
fin >> a >> b;
fout << a + b;
return 0;
}