void setup() { Serial.begin(9600); for (int x = 1; x < 13; x++) { for (int y = x ; y< 13 ; y++){ Serial.print(x);
Serial.print(" * "); Serial.print(y);
Serial.print(" = "); Serial.println(x*y); }Serial.println("");
}}
void loop() {}
void setup() { Serial.begin(9600); for (int x = 1; x < 13; x++) { for (int y = x ; y< 13 ; y++){ Serial.print(x);
Serial.print(" * "); Serial.print(y);
Serial.print(" = "); Serial.println(x*y); }Serial.println("");
}}
void loop() {}