Cod sursa(job #2275944)

Utilizator liviu2000Dragomirescu Liviu liviu2000 Data 3 noiembrie 2018 19:45:36
Problema Oras Scor 5
Compilator cpp-64 Status done
Runda Arhiva de probleme Marime 0.22 kb
#include <bits/stdc++.h>

using namespace std;
ifstream fin("oras.in") ;
ofstream fout("oras.out") ;

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