Answer:
total_owls = 0
num_owls_A = int(input())
num_owls_B = int(input())
total_owls = num_owls_A + num_owls_B
print("Number of owls:", total_owls)
Explanation:
Initialize the total_owls as 0
Ask the user to enter num_owls_A and num_owls_B, convert the input to int
Sum the num_owls_A and num_owls_B and set it to the total_owls
Print the total_owls
Answer:
total_owls = 0
num_owls_A = input()
num_owls_B = input()
total_owls = int(num_owls_A) + int(num_owls_B)
print('Number of owls:', total_owls)
Explanation:
You have to convert to int.