void setup() {
Serial.begin(9600);
int multiple = 1;
while (multiple <= 10)
{
Serial.println(multiple*73);
multiple++;
}
}
void loop() {
// put your main code here, to run repeatedly:
}
void setup() {
Serial.begin(9600);
int multiple = 1;
while (multiple <= 10)
{
Serial.println(multiple*73);
multiple++;
}
}
void loop() {
// put your main code here, to run repeatedly:
}