Please write this in Python. My inputs, when the program is run, are not being added. Please help.
2.6.2: Type casting: Reading and adding values.
Strings `num_owls_A` and `num_owls_B` are read from input. Assign `total_owls` with the sum of `num_owls_A` and `num_owls_B`.
Ex: If the input is: 3 4, then the output is: Number of owls: 7
Note: Use the appropriate conversion function for each input. The input values like 3 or 4 should not explicitly be written in the code, since the values of `num_owls_A` and `num_owls_B` are randomly generated.