编辑代码

#include<stdio.h>
int main(){
    double a,b;
    scanf("%lf%lf",&a,&b);
    printf("%.2lf\n",(a+b)/2+5);
    return 0;
}