What will the following Python program print out?
value = "100" print(int(value) + 50)
10050
Error
"150"
150