Write a function that returns 0 if the input is 1, and returns 1 if the input is 0.
0
1
flip(1) ➞ 0 flip(0) ➞ 1
Try completing this challenge without using any: