a:=(6+2)*4 = 8*4 = 32
b:=a mod 5+1 = 32 mod 5+1 = 2+1 = 3
a:=b div 6-2 = 3 div 6-2 = 0-2 = -2
Ответ: a = -2 ; b = 3.
Ответ:
Объяснение:
2)словесное описание
a=float(input())
if a>=-5 and a<5:
print(True)
else:
print(False)