fork download
  1. using static System.Console;
  2.  
  3. public class Program {
  4. public static void Main() {
  5. WriteLine(((int)SourceSystem.Mirror).ToString("D2"));
  6. }
  7. }
  8.  
  9. public enum SourceSystem {
  10. Unknown = 0,
  11. Mirror = 3,
  12. MirrorTrident = 17
  13. }
  14.  
  15. //https://pt.stackoverflow.com/q/393416/101
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
03