Files

11 lines
180 B
Python
Raw Permalink 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))