有什么办法可以缩短这段代码吗?
price1 = input("\nEnter price here: ")
price1 = int(price1)
price2 = input("\nEnter price here: ")
price2 = int(price2)
price3 = input("\nEnter price here: ")
price3 = int(price3)
price4 = input("\nEnter price here: ")
price4 = int(price4)
price5 = input("\nEnter price here: ")
price5 = int(price5)
price6 = input("\nEnter price here: ")
price6 = int(price6)
price7 = input("\nEnter price here: ")
price7 = int(price7)
price8 = input("\nEnter price here: ")
price8 = int(price8)
price9 = input("\nEnter price here: ")
price9 = int(price9)
price10 = input("\nEnter price here: ")
price10 = int(price10)
total = price1 + price2 + price3 + price4 + price5 + price6 + price7 + price8 + price9 + price10
grand_total = (18 * total /100 + total)
print("\nThe total amount weill equil to", grand_total, "(with 18% V.A.T)")