//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int n = t.nextInt();
// int[] arr= new int[n];
// for(int i=0;i<n;i++) {
// arr[i]=t.nextInt();
// }
// for(int i=0;i<n;i++) {
// System.out.print(i+1+": ");
// for(int j=0;j<n;j++) {
// if(arr[j]>arr[i]&&j!=i) {
// System.out.print("< ");
// }
// else if(arr[j]==arr[i]&&j!=i) {
// System.out.print("= ");
// }
// else if(arr[j]<arr[i]&&j!=i){
// System.out.print("> ");
// }
// }
// System.out.println();
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// String x = t.nextLine();
// for(int i=0; i<x.length(); i++) {
// if(x.charAt(i)!=' ') {
// System.out.print(x.charAt(i));
// }
// }
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int n = t.nextInt();
// int sum = 0;
// int max = 0;
// int[] arr=new int[n];
// for(int i=0;i<n-1;i++) {
// arr[i]=t.nextInt();
// sum+=arr[i];
// }
// for(int j=1;j<=n;j++) {
// max+=j;
// }
// System.out.println(max-sum);
// }
//}
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// String x = t.nextLine();
// for(int i='a';i<='z';i++) {
// System.out.println((char)i+":");
// if(x.charAt(i)==(char)i) {
// i+=1;
// }
// }
// }
//}
//public class Main {
// public static void main(String[] args) {
// for(int i=0; i<26; i++) {
// System.out.println((char)(i+'A'));
// }
// }
//}
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner t = new Scanner(System.in);
String a = t.nextLine();
int somunja = 0;
int daemunja = 0;
for(int i=0;i<a.length();i++) {
if(a.charAt(i)>='a'&&a.charAt(i)<='z') {
somunja++;
}
}
for(int j=0;j<a.length();j++) {
if(a.charAt(j)>='A'&&a.charAt(j)<='Z') {
daemunja++;
}
}
System.out.print("소문자의 갯수"+":"+somunja+"\n");
System.out.print("대문자의 갯수"+":"+daemunja);
}
}