Files
python/fejezet 6/f17/f17.py

11 lines
180 B
Python
Raw Normal View History

2021-12-10 08:46:38 +01:00
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))