Fermat is he right or wright?

def check_fermat(a,b,c,n):
if n > 2 and (a**n+b**n == c**n):
print (“Fermat was right!”)
else:
print(“Holy smoke, fermat was wrong!”)

def check_numbers():
a = int(input(“Choose a number for a: “))
b = int(input(“Choose a number for b: “))
c = int(input(“Choose a number for c: “))
n = int(input(“Choose a number for n: “))
return check_fermat(a, b, c, n)
check_numbers()