i need to fetch response of at commands through serial monitor

#include <SoftwareSerial.h>
SoftwareSerial GPRS(9, 10);
void setup() {
GPRS.begin(9600);
Serial.begin(9600);
// put your setup code here, to run once:

}

void loop()
{
while (GPRS.available())
{
Serial.write(GPRS.read());
}
while (Serial.available())
{
GPRS.write(Serial.read());
}
// put your main code here, to run repeatedly:

}
// i am using a GSM 900 A MODULE
// ARDUINO UNO R3 board

The code you posted does something. You failed to describe what it does.

You expect the code to do something. You failed to describe what you expect.

You failed to post a link to the hardware you are using, or a schematic showing ALL of the connections.

can anyone me

Seems unlikely.