# Author: Scott Wehrwein
# Date: 04/07/2021
# A program that tells a 141 student when their lab section is.

section = input("Enter your CSCI 141 section number: ")

#20769  Monday 8:00am - 9:50am
if section == "20769":
    print("Your lab is on Monday from 8 - 10.")
else:
    #20770  Tuesday 10:00am - 11:50am
    if section == "20770":
        print("Your lab is Tuesday from 10 - 12.")
    else:
        #23512  Tuesday 12:00pm - 1:50pm
        if section == "23512":
            print("Your lab is Tuesday from 12 - 2.")
        