Cod sursa(job #2887441)
Utilizator | Data | 9 aprilie 2022 17:12:54 | |
---|---|---|---|
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;
int main() {
int a,b;
ifstream f("adunare.in");
f >> a >> b;
ofstream g("adunare.out");
g << a + b;
}