n=float(input("请输入用电量(千瓦时): "))
if n<0:
print("输入错误,请重新输入")
Elif n<50:
print("你的电费是: ",n*0.5)
else:
print("你的电费是: ",n*0.6)