1 solutions

  • 0
    @ 2024-3-19 22:48:12

    #include using namespace std;

    int main() { int n; cin >> n; if (n % 3 == 0 && n % 5 == 0) { cout << "YES" << endl; } else { cout << "NO" << endl; } return 0; }

    • 1

    Information

    ID
    6857
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    1
    Tags
    # Submissions
    26
    Accepted
    15
    Uploaded By