int hasil = -1;
void setup() {
     Serial.begin(9600);
     for( int i = 1; i <= 15; i++){
      hasil = hasil + 2;
      Serial.println(hasil);
    }
}

void loop() {
  // put your main code here, to run repeatedly:

}