void setup() {
  Serial.begin(9600);
}
void loop() {
  Serial.print("Hello Arduino\n");
  delay(1000);
}