send int by serial !!!

payam2000:
what is the simplest way ?

Something like this, in conjunction with the parse example in Serial Input Basics

int myNum = 12345;
Serial.print('<');
Serial.print(myNum);
Serial.println('>');

...R