Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.07 KB | None | 0 0
  1. int nwd(int a,int b)
  2. {
  3. if(a%b==0) return b;
  4. return nwd(b,a%b);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement