# Your task is to read in a single int, n, from the user.
# Then print out the result of adding all the numbers from 1 to n
# For example if the user inputs 5 then you would compute the following:
# 1 + 2 + 3 + 4 + 5 = 15

Your task is to read in a single int n from the user Then print out the result of adding all the numbers from 1 to n For example if the user inputs 5 then you class=


Answer :

Other Questions