''' Purpose: demonstrate the processing numeric input ''' reply = input( 'Enter rectangle width and height: ' ) # get input w, h = reply.split() # split into components w, h = int( w ), int( h ) # cast them to int area = w * h # compute area print( area ) # display result