#include <Servo.h>
Servo rlhs;
Servo llhs;

void setup() {
  rlhs.attach(3);
  llhs.attach(5);
  rlhs.write(0);
  llhs.write(0);

}

void loop() {


}