#Use the print statement, print is Your Friend
#see if you can fix the bug by using the print statement
pages = 0
word_per_page = 0
pages = int(input("Number of pages: "))
word_per_page == int(input("Number of words per page: "))
total_words = pages * word_per_page
#print("pages: ", pages)
#print("word_per_page: ", word_per_page)
#print("total_words: ", total_words )
#this is a small bug for beginners
first = [1, 2, 3, 4, 5]
print(first)
second = first
print(second)
second.append(6)
print(second)
print(first)
if first == second :
print("bug! you will get hacked!")