""" CSE 163 Suh Young Choi Lesson 1: Countdown This program provides scaffolding for the countdown() coding problem, which will be covered in class. """ def countdown(): # Replace the 'pass' below with your code! pass def main(): # Replace the 'pass' below with your code! pass if __name__ == '__main__': main()