liczba1 = int(input('liczba1 - '))
liczba2 = int(input('liczba2 - '))
def nwd(a, b):
if b > 0:
return nwd(b, a%b)
else:
return a
print(f'nwd = {nwd(liczba1, liczba2)}')
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
liczba1 = int(input('liczba1 - '))
liczba2 = int(input('liczba2 - '))
def nwd(a, b):
if b > 0:
return nwd(b, a%b)
else:
return a
print(f'nwd = {nwd(liczba1, liczba2)}')