I am not sure what you are trying to say
Upload this sketch
void setup()
{
Serial.begin(115200);
for (int p = 2; p < 13; p++)
{
pinMode(p, INPUT_PULLUP);
}
}
void loop()
{
for (int p = 2; p < 13; p++)
{
Serial.print("pin : ");
Serial.print(p);
Serial.print("\t\t");
Serial.println(digitalRead(p) == HIGH ? "HIGH" : "LOW");
delay(500);
}
Serial.println();
}
Remove everything connected to the Uno and open the Serial monitor and set it to 115200 baud. You should see HIGH reported for pins 2 to 12
Use a jumper to connect each pin 2 to 12 in turn to GND. For the pin connected to GND you should see LOW reported