Cod sursa(job #2278211)

Utilizator andreipirjol5Andrei Pirjol andreipirjol5 Data 7 noiembrie 2018 14:33:59
Problema Factorial Scor 10
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.17 kb
#include <fstream>

using namespace std;
ifstream on ("fact.in");
ofstream off ("fact.out");
int main()
{
    int n;
    on>>n;
    off<<-1;
    return 0;
}