#include <stdio.h>
int main()
{
   printf("Now, the speed limit here is %i.\n",55);
   printf("But I clocked you doin' %i.\n",55+15);
   printf("Didn't you see that %i MPH sign?\n",55);
   return(0);
}