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