Cod sursa(job #2382279)
Utilizator | Data | 17 martie 2019 23:39:20 | |
---|---|---|---|
Problema | A+B | Scor | 0 |
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");
ofstream g("adunare.out");
f >> a;
f >> b;
g << 0;
return 0;
}