''' Purpose: use programmer-defined functions from module uva ''' import uva # get access to module being tested # test first function reply = input( "Enter ???: " ) a = int( reply ) r1 = uva.xxx( a ) print( "xxx(", a, "):", r1 ) print() # test second function #reply = input( "Enter ???: " ) #a = int( reply ) # #r2 = uva.xxx( a ) # #print( "xxx(", a, "):", r2 ) #print() # test third function #reply = input( "Enter ???: " ) #a, b = reply.split() #a, b = int( a ), int( b ) # #r3 = uva.xxx( a ) # #print( "xxx(", a, "):", r3 ) #print()