Guest User

Untitled

a guest
Dec 17th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.06 KB | None | 0 0
  1. int f(int x, int y) {
  2.   return x ? f((x&y) << 1, x ^ y) : y;
  3. }
Add Comment
Please, Sign In to add comment