Cod sursa(job #2739340)
| Utilizator | Data | 7 aprilie 2021 20:10:53 | |
|---|---|---|---|
| Problema | A+B | Scor | 100 |
| Compilator | cpp-64 | Status | done |
| Runda | Arhiva de probleme | Marime | 0.27 kb |
//
// main.cpp
// adunare
//
// Created by Florian Marcu on 4/7/21.
//
#include <fstream>
using namespace std;
ifstream fin("adunare.in");
ofstream fout("adunare.out");
int main() {
int a, b;
fin >> a >> b;
fout << a+b << "\n";
return 0;
}
