''' Purpose: solve oops.py test problem ''' # get inputs reply1 = input( "Enter an integer: " ) reply2 = input( "Enter an integer: " ) # convert inputs into integers n1 = int( reply1 ) n2 = int( reply2 ) # compute their product, quotient, and remainder product = n1 * n2 quotient = n1 // n2 remainder = n1 % n2 # print calculations print( product ) print( quotient ) print( remainder )