void setup() {
  // put your setup code here, to run once:
Serial.begin(9600);
int a = 12;

if (a % 3 == 0); {
    Serial.print("Hasil kuadrat: ");
    Serial.println(a*a);
}

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

}