Problem
Write a program that repeatedly asks the user to enter integer numbers until the user enters done. Once done is entered, print out the largest and smallest of the numbers. Use Python infinity (i.e., float('inf') and float('-inf')) to solve this problem. Note you are not allowed to use max and min functions.