String name = "ilyos";
String surname = "ilyos";
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
}
void loop() {
// put your main code here, to run repeatedly:
Serial.print("My name is: ");
Serial.println(name);
Serial.print("My surname is: ");
Serial.println(surname);
}