// editor1
#include<stdio.h>
#include<string.h>
{
 int s;
 printf("enter the length of the last word");
 scanf("%s",&s);
 if(s>0){
     printf("number is an integer");
   }
   else
     {
         printf("invalid input");
     }
return 0;
}