100115 - 小写转大写

Time Limit

1000 毫秒

Memory Limit

128 MB

通过次数

33

提交次数

40

在ASCII表中,A和a之间的距离为'a'-'A',现在给你一个小写字母,请你输出对应的大写字母。

PS:当然,你也可以用toupper和tolower来进行大小写转换。它们的定义位于cctype头文件中。

Input

一行,一个小写字母c

Output

一行,c对应的大写字母。

Examples

Input

a

Output

A