Exercise: Comparison operators - Greater Than

Sum aa and ab. Compare this sum with b to check if it is greater than b. Use the Greater Than operator. Assign the result of this comparison to is_greater.
# sum aa and ab aa = 10 ab = 12 b = 20
is_greater =
print(is_greater)
Python
Setting up Python environment...
Output