/*
 * hw2 problem 1
 *
 */
#include <stdio.h>

void main(){
  
  int i;
  int nagCount = 13; /* the number of times the wife needs
                        to yell at the squirrel farmer */
  
  for(i=0;i<nagCount;i++){
    printf("Feed your damn squirrels!\n");
  }
  
}




