import check

## input_output: None -> None
## Effects: 
## Two inputs of integers
## Outputs two prompts for integers and one final statement.
def input_output():
    m = int(input("Enter an integer: "))
    n = int(input("Enter another integer: "))    
    print("The sum is " + str(m + n))
    
check.set_input(["4","10"])
check.set_screen("Outputs prompts for two integers. Prints out 'The sum is' and the sum 14")
check.expect("Test 4 + 10", input_output(), None)