Cod sursa(job #2581267)
Utilizator | Data | 14 martie 2020 19:52:03 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp-64 | Status | done |
Runda | Arhiva de probleme | Marime | 0.19 kb |
#include <iostream>
#include <fstream>
using namespace std;
ifstream fi("adunare.in");
ofstream fo("adunare.out");
int main() {
int a, b;
fi >> a >> b;
fo << a + b;
}