import random
lowerlimit=int(input("Please input the lower limit of the range:\n"))
upperlimit=int(input("Please input the upper limit of the range:\n"))
print(f'you entered the range of {lowerlimit,upperlimit}')
randomvalue=int(random.uniform(lowerlimit,upperlimit)/100)
print(f'you can get ¥{100 * randomvalue} for bonus this time')