Problem Statement
Write a program that reads a single uppercase letter from the user and converts it to lowercase by adding 32 to its ASCII value.
In ASCII encoding, uppercase letters (A-Z) have values from 65-90, while their lowercase counterparts (a-z) have values from 97-122. The difference between any uppercase letter and its lowercase equivalent is exactly 32.
Your task is to read one character from standard input, add 32 to its ASCII value, and print the resulting lowercase character.