#include<stdio.h>
int main()
{
    float a,b;
    scanf("%0.1f",&a);
    scanf("%0.1f",&b);
    printf("%0.2f",a+b);
    return 0;
}