Problem1539--大写字母转小写字母

1539: 大写字母转小写字母

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

从键盘输入一个大写字母,要求改用小写字母输出,并分别输出他们的ascll码。

Input

输入占一行,一个大写字母。

Output

输出占两行。

第一行为大写字母和对应ascll码并用英文逗号隔开。

第二行为小写字母和对应ascll码并用英文逗号隔开。

Sample Input Copy

A

Sample Output Copy

A,65
a,97

HINT

小写字母的ascll码 = 大写字母ascll码 + 32

Source/Category