Files
python/fejezet 6/f17/f17.py
2021-12-10 08:46:38 +01:00

11 lines
180 B
Python

t = int(input())
n = int(input())
def tobbszoros_e(t,n):
if(t % n == 0):
return "Töbszöröse"
else:
return "Nem töbszöröse"
print(tobbszoros_e(t,n))