AT_abc446_a [ABC446A] Handmaid
Description
You are given the name $ S $ of a certain person. The first character of $ S $ is an uppercase English letter, and the other characters are lowercase English letters.
The name of this person's handmaid is the string obtained by converting the first letter of $ S $ to lowercase and adding `Of` to the beginning. Find the name of this handmaid.
Input Format
The input is given from Standard Input in the following format:
> $ S $
Output Format
Output the answer on one line.
Explanation/Hint
### Sample Explanation 1
Converting the first letter of `Glen` to lowercase gives `glen`, and adding `Of` to the beginning gives `Ofglen`.
### Constraints
- $ S $ is a string of length between $ 1 $ and $ 10 $ , inclusive.
- The first character of $ S $ is an uppercase English letter.
- The characters of $ S $ other than the first are lowercase English letters.