Write a program that converts the given character to uppercase.
Input
Single character c.
Imprint
If the character is a lowercase letter of the Latin alphabet (that is, a letter from a to z), print the same capital letter instead, otherwise print the same character (this operation is called "uppercase").
 
Examples
| # | 
Input | 
Output | 
| 1 | 
e | 
E | 
| 2 | 
B | 
B |