728x90
반응형

단순 사칙연산 문제이다.

a, d, k = map(int, input().split())
print((k-a)//d +1 if (k-a)%d == 0 and (k-a)//d >= 0 else 'X')
728x90
반응형

+ Recent posts