fork download
  1. using System;
  2. using System.Collections.Generic;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. int value = 601511616;
  9. Console.WriteLine("{0:N0}", value);
  10. Console.WriteLine("{0:N2}", value);
  11. }
  12. }
Success #stdin #stdout 0.04s 23992KB
stdin
Standard input is empty
stdout
601,511,616
601,511,616.00