#K65002. Even Length String Checker

    ID: 32100 Type: Default 1000ms 256MiB

Even Length String Checker

Even Length String Checker

You are given a string ( s ). Your task is to determine whether the length of ( s ) is even. If it is even, output ( True ); otherwise, output ( False ).

Implement the solution such that it reads the input from standard input (stdin) and prints the result to standard output (stdout). This problem tests basic string manipulation and condition checking.

inputFormat

A single line containing the string ( s ). Note that the string may contain spaces and special characters.

outputFormat

Print ( True ) if the length of the string is even, otherwise print ( False ).## sample

helloo
True