Contact: aviboots(AT)netvision.net.il
38,853 questions
50,554 answers
573 users
N = 5 sum_even = N * (N + 1) print(f"The sum of the first {N} even numbers is: {sum_even}") # 2 + 4 + 6 + 8 + 10 = 30 ''' run: The sum of the first 5 even numbers is: 30 '''