Arduino Serial Connection

My sender code looks like this:

char str[4];

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

void loop() {
int value=analogRead(A0);
itoa(value, str, 10);
Serial.write(str, 4);
Serial.println("");
delay (500);
}

im not sure what to do with the receiving code though...