// get a line of input line = input() // split the line strings = split(line, " ") // add the two numbers and print the result println int(strings[0]) + int(strings[1])