# Arup Guha
# 1/27/2020
# For loop examples

# Python doesn't require this, but other languages do.
def main():

    # Printing out a numbered message.
    for i in range(100):
        print(i+1,". I will not skip class.", sep="")
    
    # Base the # of times we write on the board on the user input.
    numDays = int(input("How many days did you skip class?\n"))
    for i in range(numDays):
        print(i+1,". I will not skip class.", sep="")







# Call our main function.
main()
