For which set of values will the Python code (s = (a**4) + 5*5**(b + b)) give the output as: 141?
a = 2, b = 1
Reason — For a=2, b=1:
s = (24) + 5 * (52) = 16 + 5*25 = 16 + 125 = 141