First you need the current page id, Get the current page by following code $post->ID it's return current page id
Condition
<?php
if($post->ID == '123'){
print "Some Output";
}
else
{
print "Some Output";
}