Create a program which:
Contains a function called sumN() which takes an int n as an argument and returns a double which is the sum the squared roots of all integers between 1 and n.
In the main() asks the user for a number Q.
Prints to the console the values returned by sumN(i) for all the integers i between 1 and Q.