n,m=map(int,input().split()) for x in range(m,n+1): if x%m==0: print(x,end=" ")
Sorry: IndentationError: expected an indented block (Main.py, line 4)