1# test builtin abs
2
3print(abs(False))
4print(abs(True))
5print(abs(1))
6print(abs(-1))
7