xbee- recivinig print from serial

Hello fellow arduino users, we are high school students, asking for help with xbee and lcd.
The xbee sends the information and reciving it just fine, we can see the out put in the serial monitor but it does'nt print on the lcd.
we tried writing a code which will print it but dont succeed.
here is the code we wrote:

//Coordinator

void setup ( )
{
Serial.begin(9600) ;
}

void loop ( )
{
if (Serial.available ( ) > 0
{
Serial.write(Serial.read ( ) ) ;
}
}

Can anyone please help us from this point?
Thank you! :slight_smile: 8) :wink: :smiley: XD

we can see the out put in the serial monitor but it does'nt print on the lcd.

You haven't got any code that references an LCD.

Please get into the habit of using code tags when posting code.

sorry, this is my first time posting, I didn't realize that I need to post all the code.
thank you for your answer.
here is the main code:

#include <Wire.h>
#include <LiquidCrystal.h>
LiquidCrystal lcd(2, 3, 4, 5, 6, 7);

void setup ( )
{
Serial.begin(9600) ;
}

void loop ( )
{
if (Serial.available ( ) > 0)
{
Serial.write(Serial.read ( ) ) ;
lcd.setCursor(8,1);
lcd.print(Serial.read ( ));
}
}

AWOL:

we can see the out put in the serial monitor but it does'nt print on the lcd.

You haven't got any code that references an LCD.

Please get into the habit of using code tags when posting code.