Cod sursa(job #2751242)

Utilizator redstonegamer22Andrei Ion redstonegamer22 Data 14 mai 2021 16:58:28
Problema A+B Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <bits/stdc++.h>

using namespace std;

int main() {
    ifstream ok("../../jail/adunare.ok");
    ofstream out("../../jail/adunare.out");

    char ch;
    while(ok >> noskipws >> ch) {
        out << ch;
    }
}