#include <stdio.h>

main(){
  int c, n1;

  n1=0;
  while((c=getchar())!=EOF)
    if(c=='n')
      ++n1;
  printf("%d",n1);
}

标签: none

添加新评论