13146: 考试三字符操作

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:2 Solved:0

Description

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

Input

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

Output

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

Sample Input Copy

HElloWorld

Sample Output Copy

heLLOwORLD
7 3