fork download
  1. using System;
  2.  
  3. namespace mola
  4. {
  5. class MainClass
  6. {
  7. public static void Main (string[] args)
  8. {
  9.  
  10. String s = Console.ReadLine();
  11. int[] a = new int[26];
  12.  
  13.  
  14. foreach (char i in s)
  15. a [i - 97]++;
  16.  
  17. foreach (int i in a)
  18. Console.Write(i+" ");
  19.  
  20. Console.WriteLine ();
  21.  
  22. }
  23. }
  24. }
  25.  
Success #stdin #stdout 0.04s 23920KB
stdin
sinsejin
stdout
0 0 0 0 1 0 0 0 2 1 0 0 0 2 0 0 0 0 2 0 0 0 0 0 0 0