# print the sum of the first 5 positive integers, version 1 first0 = 0 first1 = first0 + 1 first2 = first1 + 2 first3 = first2 + 3 first4 = first3 + 4 first5 = first4 + 5 print(first5)