program P1; {$APPTYPE CONSOLE} var a,b,c,p:real; f1,f2:text; begin readln(a,b,c); p:=a+b+c; writeln(p:4:2); readln end.