TOPIC

Nao funciona. 5% error

gclacerda asked 4 years ago

a = None b = None

def read_integer(): try:

read for Python 2.x

return int(raw_input())

except NameError:

read for Python 3.x

return int(input())

a = read_integer() b = read_integer() print(str("X = ") + str(str( ) + str(a + b)))

This topic was solved and cannot recieve new replies.