fork(2) download
  1. public class Program
  2. {
  3. public static void Main(string[] args)
  4. {
  5. int input = int.Parse(System.Console.ReadLine());
  6. int tot = 0;
  7.  
  8. for (int i = 0; i < input; i++)
  9. {
  10. int temp = System.Console.ReadKey().KeyChar - '0';
  11. tot += temp;
  12. }
  13.  
  14. System.Console.Write(tot);
  15. }
  16. }
Success #stdin #stdout 0.02s 15060KB
stdin
5
54321
stdout
-240