Problem2154--Count number

2154: Count number

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 115  Solved: 22
[Submit] [Status] [Web Board] [Creator:]

Description

Enter a set of characters and count the number of numbers and letters respectively Such as input 05s97ac5df15, output 5 letters, 7 numbers

Input

Given a string

Output

Output the number of characters and numbers

Sample Input Copy

s5fs13

Sample Output Copy

3 letters 3 numbers

Source/Category

190