fork download
  1. using System;
  2. public class Test
  3. {
  4. public static void Main()
  5. {
  6. long number = 1234567890123456789L;
  7. const long _MAX_LENGTH = 9999999999999999L;
  8.  
  9.  
  10.  
  11. number = number % (_MAX_LENGTH + 1);
  12.  
  13. Console.WriteLine (number);
  14. }
  15. }
Success #stdin #stdout 0.03s 37008KB
stdin
Standard input is empty
stdout
4567890123456789