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