What will be the result of running the code below?
days_in_week = 7
hours_in_day = 24
hours_in_week = days_in_week*hours_in_day
print("There are "+str(hours_in_week)+" hours in each week")