#include <iostream>
using namespace std;
int main() {
int n1, n2, n3;
cin >> n1 >> n2 >> n3;
if (n1 == 1 && n2 == 1 && n3 == 1)
cout << "YES";
else
cout << "NO";
return 0;
}⚠️Content was pasted as plain text and auto-formatted as a code block. Use the Code Block button in the editor for proper formatting.