Cod sursa(job #2282506)

Utilizator liviu2000Dragomirescu Liviu liviu2000 Data 13 noiembrie 2018 20:52:03
Problema Kperm Scor 0
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.23 kb
#include <bits/stdc++.h>

using namespace std;

ifstream fin("kperm.in") ;
ofstream fout("kperm.out") ;

int main()
{
    int n ;
    fin >> n ;
    if ( n % 2 == 0 )
        fout << "0" ;
    else
        while(1) ;
}