function countsheep($num){
  $str="";
  for($i = 1 ; $i<=$num; $i++){
$str .=  $i . " sheep...";
    
    }
  return $str;
}