Consider this code: if temp gt; 28: if money gt; 0. print (quot;I’m buying a lemonade.quot;) #How do I combine the two quot; if squot; into one….. Consider this code:if temp > 28:ÿ ÿ ÿif money > 0.99:ÿ ÿ ÿ ÿ ÿ ÿprint (“I’m buying a lemonade.”)#How do I combine the two “ifs” into one. I need to write a python boolean expression (that is, not to rewrite the entire if statement) that causes the following if statement to have the same behavior as the code fragment above:if ___________________________ :ÿ ÿ ÿ ÿprint(“I’m buying a lemonade.”)#both of the conditions temp >28 and money >0.99 need to be True.