How to Serial.print in Putty?

Those 3 strings are being sent via the usb port.

I presume you have bluetooth setup eg if your bluetooth serial line is connected to pins 2 and 3 (or whatever) (send/recv)

mySerial(2, 3); //send/recv (SoftSerial any kind)

//setup
{
Serial.begin(9600);
MySerial.begin(9600); //blueooth
}

//loop

{
if (mySerial.available())
{
c = (char)mySerial.read();
mySerial.print(c);
}
}

etc etc.