提交时间:2023-01-12 16:10:14

运行 ID: 4643

#include <iostream> using namespace std; int main() { int n; cin >> n; if (n % 15 == 0) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }