int hasil = -1;
void setup() {
// put your setup code here, to run once:
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:
}