Advertisement
Guest User

Untitled

a guest
Nov 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. long long zad2(int c, int d) {
  2. if (c > d) {
  3. c - d;
  4. return zad2(c,d);
  5. }
  6.  
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement