fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7.  
  8. int zahl;
  9. char zeichen;
  10.  
  11. /*###############################################*/
  12.  
  13. zahl = int.Parse(Console.ReadLine());
  14.  
  15. /*###############################################*/
  16.  
  17. zeichen = (char)zahl;
  18.  
  19. /*###############################################*/
  20.  
  21. Console.WriteLine((char)zeichen);
  22. }
  23. }
Success #stdin #stdout 0.05s 23912KB
stdin
65
stdout
A