So user should choose between A, B or C and it should put that value into the random int
Error message: ValueError: invalid literal for int() with base 10: 'A'
option=input()
A=a=100
B=b=150
C=c=200
value=random.randint(0,int(option))
print(value)