12 Oct
2023
12 Oct
'23
6:58 p.m.
def add(a, b): assert b >= 0 assert type(b) is int sum = a while b: sum += 1 b -= 1 return sum