13936 - String Manipulation and Algorithms   

Description

  1. Read a sentence from the user.

  2. Convert the entire sentence to uppercase and print it.

  3. Count and print the number of characters (including spaces) in the sentence.

  4. Replace all occurrences of the letter 'a' with '@' and print the modified sentence.

  5. Check if the sentence starts with the word 'The' (case-sensitive), print True or False

Input

A sentence

Output

Input sentence in upper case
Number of characters
Sentence with 'a' replaced
True/False (case sensitive)

Sample Input  Download

Sample Output  Download

Tags




Discuss