Data types other than integer

Create a program that computes the average of values that are entered by the user. The user can enter as many numbers as desired. The user will end the program by entering the letter q.

After the user has entered q to stop the entry of numbers, the program will print out three lines regarding the user's input:

The sum of the numbers entered
The count of the numbers entered
The average of the numbers entered
NOTE: These lines should be printed out only after the user has quit entering numbers.

For each value, a string will be printed out that states something like:

"The sum of the numbers entered is " and the sum of the numbers.

For example, if the user entered in the values, 1,2, 3, the output would look like:

The sum of the numbers entered is 6.
The count of the numbers entered is 3.
The average of the numbers entered is 2.
Do NOT use functions to do this. Using functions to do the calculations will result in points taken off the grade.

Do NOT use data types other than integer, float, or string. Using any data types (lists, etc) will result in points taken off the grade.