Gearmotor program

#include <Servo.h>

Servo servo_pin_2;
int _ABVAR_2_tempe;
Servo servo_pin_1;
int _ABVAR_1_humi;

void setup()
{
_ABVAR_2_tempe = 0;
servo_pin_2.attach(2);
servo_pin_1.attach(1);
_ABVAR_1_humi = 0;
}

void loop()
{
if (( ( _ABVAR_1_humi ) < ( 60 ) ))
{
servo_pin_1.write( 360 );
}
if (( ( _ABVAR_2_tempe ) < ( 18 ) ))
{
servo_pin_2.write( 360 );
}
}

I do that with ardublock, but I have not tried it yet, and I can not until Monday.
Thank you Jackrae, I'll try it Monday.