# 彩票系统
import random
num=int(input("请输入您的号码100以内:"))
res=random.choice(range(100))+1
print("中奖数字是",res)
# 判断是否中奖   num==res
if num==res:
    print("恭喜您中了500万")