#include <iostream> using namespace std; double a, b; int main(void) { scanf("%lf %lf", &a, &b); printf("%.2lf", a + b); return 0; }