fork download
  1. using System;
  2.  
  3. class Program {
  4. static void Main(string[] args) {
  5. Console.WriteLine(gcd(333, 57));
  6. }
  7. static int gcd(int a, int b) {
  8. if (b == 0) {
  9. return a;
  10. }else {
  11. return gcd(b, a % b);
  12. }
  13. }
  14. }
Success #stdin #stdout 0.02s 24680KB
stdin
Standard input is empty
stdout
3