#include<iostream> using namespace std; int main() { std::ios::sync_with_stdio(false); cin.tie(0); int t, a, b; cin >> t >> a >> b; cout << "yes" << '\n'; return 0; }