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