m = int(input()) n = int(input()) if m%n == 0: print('m делится на n нацело:', m//n) else: print('m не делится на n нацело. Остаток:', m%n)