Write an algorithm to ask the user for two numbers and then print all the numbers from the first to the second inclusive. Write an algorithm to ask the user for a number and then calculate and print the sum of the numbers from 1 to the entered number. eg If the user enters 7 the algorithm should print 28 since 1+2+3+4+5+6+7 = 28 Write an algorithm that will ask the user for two numbers and print the sum of all the numbers from the first to the second. Assume that the first is less than the second. eg If the user enters 3 and 7 the algorithm should print 25 since 3+4+5+6+7 = 25 Write an algorithm that will ask the user for a number and print the squares of all the numbers from 1 to the entered number. eg If the user enters 5 the algorithm should print 1 4 9 16 25 Write an algorithm that will ask the user for a number and print the sum of all the even numbers from 2 to the number. eg If the user enters 12 the algorithm should print 42 since 2+4+6+8+10+12 = 42 Write an algorithm that will ask the user for a number and print the product of all the multiples of 5 from 5 to the number. eg if the user enters 16 the algorithm should print 750 since 5 x 10 x 15 = 750 Write an algorithm that repeatedly asks the user for a character until the user enters a period (.). After the period is entered the algorithm reports the number of characters entered. Write an algortihm that repeatedly asks the user to enter a name until the user enters the name "noName". For each name, other than "noName", the algorithm should print the message: Well done followed by the name entered. eg If the name entered is Julie, the algorithm should print Well done Julie Write an algorithm that asks the user for a number and then prints the sum of the digits in the number. eg If the user enters 1253, the algorithm will print 11 since 1+2+5+3 = 11