def check_fermat(a, b, c, n):
	a**n + b**n == c**n and print('Fermat was wrong') or print('sraka kota')
	
check_fermat(4, 4, 8, 3)