Does Serial.print affects serial recieve buffer?

tnx, but

void loop(){
Serial.print("text");
if (Serial.available()){
inByte = Serial.read();
Serial.print(inByte);
}
}

also prints "text" over and over again