count = 0 for i in range(1, 4): for j in range(2): if i + j == 3: break count += 1 print(count)
3
4
5
6