Alright, I figured out how to retrieve a particular post using the php query_posts function. This is what I put right before the loop as suggested by the codex:
<?php
query_posts('p=4');
?>
It works great. However, what I'd like to do now is retrieve a particular post and my most recent post. Anyone know how to accomplish this using the query_posts function?