+ 1
whats the problem ?
name = input("john") age = input(67) print(name +"is" + age)
2 Respostas
+ 1
name = "john"
age = 67
print(name +"is" + age)
Or
name = input()
age = int(input())
print(name +"is" + str(age))
+ 3
age=int(input())
Because age should be in integer.. and input by default take string as an input..