I am writing a program that counts the number of sick people on a specific day that is the sum of the last 3 days combined and I get stuck once I get to day 4. the first 3 days were provided.
day_1 = 1
day_2 = 4
day_3 = 64
days = (day_1 + day_2 + day_3)
while(True):
sick_count = int(input('OUTBREAK \n What day do you want a sick count for?: '))
if sick_count == 1:
print(f'Total: {day_1}')
elif sick_count == 2:
print(f'Total {day_2}')
elif sick_count == 3:
print(f'Total {day_3}')
elif sick_count == 0:
print('Sorry thats invalid')
elif days > 3:
sum()