no_of_books=int(input("Enter total books ordered:"))
print ("Total number of books:", no_of_books)
price_of_each_book=float(input("Enter unit price:"))
print ("Total price:", no_of_books*price_of_each_book)
# 获取第一个列表的输入list_1=list(input("Enter numbers for list 1:"))
# 获取第二个列表的输入list_2=list(input("Enter some letters for list 2:"))
# 循环遍历第二个列表并添加到第一个列表forjinlist_2:
list_1.append(j)
# 打印修改后的第一个列表print(list_1)