summaryrefslogtreecommitdiff
path: root/py_test_example.py
blob: 3386a119c99c8d8e46180ea3fe7d233d3e77d684 (plain)
1
2
3
4
5
6
7
def x(n: int):
    if ( n == 0 ) or ( n == 1 ):
        print(n, end="")
        return
    x(n // 2)
    print(n % 2, end="")
x(255)