#include<stdio.h> main() { int i,b=0; char s[300]; gets(s); for(i=0;s[i]!='\0';i++) { if(s[i]==' ') b++; } printf("%d\n",b+1); }