# inputs a = 435 b = 23 # Stores the remainder obtained # when dividing a by b, in c c = a % b print(a, "mod", b, "=", c, sep = " ")