You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
156 B
Python

a, b = map(int, input().split())
if b - a >= 10:
print(0)
else:
ans = 1
for i in range(a + 1, b + 1):
ans = ans * i % 10
print(ans)