Friday, August 25, 2017

2160 Name at Form URI Problem Only Solution In C#


using System; 

 class Exercise8 

    static void Main()
{
   
   
        string s=Console.ReadLine();
        int l=s.Length;
        if(l>80)
        {
            Console.WriteLine("NO");
        }
        else
        {
            Console.WriteLine("YES");
        }
}

}

No comments:

Post a Comment