fork download
  1. #include <stdio.h>
  2. void A(int a,int b){
  3. if(a%b==0){
  4. printf("%d",b);
  5. }
  6. }
  7.  
  8.  
  9. void gcd(int m,int n){
  10. if(m%n==0){
  11. return;
  12. }else
  13. }
  14. int main(void) {
  15.  
  16. return 0;
  17. }
  18.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Standard output is empty