num1 = 99999 num2 = 99999 # Add two numbers subtract = num1 - num2 # Display the subtract print('The subtraction of {0} and {1} is {2}'.format(num1, num2, subtract))