游客 Signup | Login
中文 | En

3410 - 考试三字符操作

通过次数

0

提交次数

0

Time Limit : 1 秒 Memory Limit : 128 MB

输入N个字母字符串,要求小写变大写,大写变小写输出,并统计其中大写字母的个数,小写字母的个数输出;(N<=100)

Input

输入包含大小写字母的字符串HElloWorld

Output

将大写字母转换成小写,小写反之,输出;并输出转换后的大写字母个数以及小写字母个数

Examples

Input Format

HElloWorld

Output Format

heLLOwORLD
7 3