fork download
  1. #include <stdio.h>
  2.  
  3. int gcd(int a,int b) {
  4. return b ? gcd(b,a%b) : a;
  5. }
  6.  
  7. int main(void) {
  8. printf("%d",gcd(24,2));
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5300KB
stdin
Standard input is empty
stdout
2