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