How to read Raspberry GPIO status from Arduino? (simple)

I have Raspberry running a very simple blink-led program:

Raspberry GPIO21 ---->resistor----->[led +/led -]---->Raspberry ground

It works fine.

Now I'd like to use Arduino pin 2 to DigitalRead above led status: is it on or off?
Where do I connect wires.

Sorry about if this is very simple - I had a long hiatus from Arduino programming and I am re-learning all again.

What voltage does the RPi put out, and what voltage does your Arduino take? If they match, or the Pi is a bit less than the Arduino, it's simply pin to pin (and connect grounds).

Pi is 3.3V

newuser:
Where do I connect wires.

Directly from the Pi output to the Arduino input. Not from between the resistor and led. You will need a common ground connection also.

Assuming your Arduino is 5V, then any voltage around 3.0V or above should read as HIGH, so the 3.3V from the Pi should give a HIGH reading.

However, if your series resistor is too low, drawing too much current from the GPIO pin (16mA or more) then this could drag down the output voltage so much that it is no longer above 3.0V, causing the Arduino to read LOW even though the led is on.