2)t = float(input("Малыш, какая у тебя температура?? -"))if t > 36.6: print("Малыш, бистро в кровать!!")else: print("Малыш, учи уроки,завтра в школу")3)a = int(input(" a = "))b = int(input(" b = "))if a == b: print(False)elif a < b: suma = (a + b)/2 print(suma)elif a > b: size = (a+b)*2 print(size)x4)a = int(input(" a = "))b = int(input(" b = "))c = int(input(" c = "))if a > 0: print('a^2 = '+str(pow(a,2)))elif a < 0: print("a^2 = "+str(pow(a,-4)))if b > 0: print('b^2 = '+str(pow(b,2)))elif b < 0: print("b^-4 = "+str(pow(b,-4)))if c > 0: print('c^2 = '+str(pow(c,2)))elif c < 0: print("c^-4 = "+str(pow(c,-4)))5)a = int(input(" a = "))b = int(input(" b = "))A = [a,b]if ( a < 0) and ( b<0): print("Точка "+str(A) +" знаходиться в 3 четверти")elif ( a < 0) and ( b>0): print("Точка "+str(A) +" знаходиться в 2 четверти")elif ( a > 0) and ( b>0): print("Точка "+str(A) +" знаходиться в 1 четверти")else: print("Точка "+str(A) +" знаходиться в 4 четверти")