summaryrefslogtreecommitdiff
path: root/progs/a490.py
blob: c802fcc905f9fc44ae476bee3185017eac02e3b9 (plain)
1
2
3
4
5
6
7
8
9
def multiply_int(x, y):
    if y < 0:
        return -multiply_int(x, -y)
    elif y == 0:
        return 0
    elif y == 1:
        return x
    else:
        return x + multiply_int(x, y - 1)