#include using namespace std; int main() { float A,B; cin >> A; cin >> B; int ans = A + B; cout << ans << endl; }