#include <stdio.h> int main () { double x,y,z,average; scanf("%f%f%f",&x,&y,&z); average=(x+y+z)/3.0; printf("average=%0.2f",average); return 0; }