Write a code to get the input in the given format and print the output in the given format. code example
Example: how to print the 3erd character of an input in python
exampleString = "This is an example sentence"
print(exampleString[2])
exampleString = "This is an example sentence"
print(exampleString[2])