Guest User

Untitled

a guest
Apr 23rd, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. function sum(x: int, y: int): int
  2. if y = 0:
  3. return x
  4. return sum(x+, y-)
  5.  
  6. def sum(x, y):
  7. if not y:
  8. return x
  9. return sum(sucessor(x), antecessor(y))
  10.  
  11. print(sum(3, 5)) # 8
Add Comment
Please, Sign In to add comment