Write a program that takes as input three numbers and outputs the mean(average) and standard deviation of the numbers. If the numbers are x1, x2, and x3, then the mean(average) x=(x1+x2+x3)/3 and the standard deviation is :
s=√(((x1-x)2+(x2-x)2+(x3-x)2))/3