You are given two integers a and b.
Write a program that finds the arithmetic mean of the squares of all integers from a to b
Input:
The first line contains two integers a and b (a<=b, a,b modulo no more than 100)
Output:
The program should output one number - the arithmetic mean of the squares of all integers from a to b (with 2 decimal places)
Example