#include int main() { std::cin.tie(nullptr) -> sync_with_stdio(false); long double a, b; std::cin >> a >> b; std::cout << a + b << '\n'; }