#include <stdio.h>

int main()
{
  float p;
  for (p = 0; p < 5; p += 0.5)
  {
      printf("p=%2.2f\n",p);
  }

  return 0;
}