Global $z3 = 100, $z4 = 0, $z12 = 0
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("noname1", 210, 500, 240, 124)
$Button1 = GUICtrlCreateButton("Пуск", 38, 24, 129, 33, $WS_GROUP)
$input = GUICtrlCreateInput("0",55,60,100,20)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
Func Fli()
$z1= GUICtrlRead ($input)
While $z4 <= 170
$z1 = $z1*2
GUICtrlCreateLabel($z4&'градусов = '&$z1,15,$z3,120,20)
$z4 = $z4 + 10
$z3 = $z3 + 20
WEnd
EndFunc
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
case $Button1
Fli()
EndSwitch
WEnd