fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc,char*argv[]) {
  4. int mcd, i = 1,a,b;
  5. mcd = 1;
  6. scanf("%d",&a);
  7. scanf("%d",&b);
  8. if (a<b) {
  9. mcd = a;
  10. while (a % mcd !=0 || b % mcd !=0) {
  11. i++;
  12. mcd = a/i;
  13. }
  14. } else {
  15. mcd = b;
  16. while (a % mcd !=0 || b % mcd !=0) {
  17. i++;
  18. mcd = b/i;
  19. }
  20.  
  21.  
  22. }
  23. printf("%d",mcd);
  24.  
  25.  
  26. return 0;
  27. }
Success #stdin #stdout 0s 5288KB
stdin
45
stdout
1