Ok, how many 7 segments?
The basic view of it would be:
One arduino with a numeric keypad and xbee module
and
A second arduino with an xbee module and probably some driver chip to support more 7 segments.
You would obviously need to figure out how to wire up the keypad and the 7 segments (the xbee modules are easy as you can get a interface card (called a shield)).
Then you would need to write some code (depending on your coding skills this could be pretty easy, the aruduino forum is very helpful too) to interpret the keypad presses and transmit them over the serial port, the xbees act as wireless RS232 and once configured require nothing special to get wireless comms working.
On the receiving end you would need to write some code to take the incomming numbers on the serial and output them to the 7 segments. There are some examples of this in the arudino codebase and also again the forum is a good place to get help.
If all that seems a bit daunting then I can't help you any more.