summaryrefslogtreecommitdiff
path: root/test/2b.py
blob: d6d0bb2038ad15373c0d3f11689dd2d5f9994a5f (plain)
1
2
3
4
5
6
7
8
9
n = 1
x = 2
y = 3
m = 1
while n + 2 < 2 * x - 3 * y + 50:
    m = m + n
    n = n + 1

print(m)