#31172: I don't say swear words


oh_my_god (often)


#include <stdio.h>
#include <stdlib.h>
int main()
{   
  int i,n,num=0;
  scanf("%d",&n);
  for(i=0;i<n;i++)
  {
      printf("%d. I don't say swear words!\n",++num);
  }
  return 0;
}