Cod sursa(job #2254456)
Utilizator | Data | 5 octombrie 2018 13:53:24 | |
---|---|---|---|
Problema | A+B | Scor | 100 |
Compilator | cpp | Status | done |
Runda | Arhiva de probleme | Marime | 0.15 kb |
#include <fstream>
using namespace std;
ifstream f("adunare.in");
ofstream g("adunare.out");
int main(void) {
int A,B;
f >> A >> B;
g << A + B;
}