import sys

a, b, c = map(int, input().split())
for i in range(a, b + 1):
    if i % c == 0:
        print(i)
        break
    elif i == b:
        print(-1)