<?
$in 
$_REQUEST[in];
if ( isset(
$in) )
$ceil ceil($in); }
else
$ceil ""; }
?>
<html>
<body bgcolor="#fad888">
<center>
<form>
<input type="text" name="in" cols="7" value="<? echo $in;?>" />
<input type="submit" value="Round Up">
<input type="text"  value="<? echo $ceil?>" cols="7" />
</center>
</form>
</body>
</html>