Cod sursa(job #2885869)

Utilizator lungubiancaBia Lungu lungubianca Data 6 aprilie 2022 18:30:29
Problema Patrate2 Scor 90
Compilator py Status done
Runda Arhiva de probleme Marime 0.18 kb
import math

fin = open("patrate2.in", 'r')
fout = open("patrate2.out", 'w')

n = int(fin.read())
fout.write(str(pow(2,n*n)*math.factorial(n)))

fin.close()
fout.close()