1 solutions

  • -2
    @ 2025-7-7 15:29:22

    #include <bits/stdc++.h> using namespace std;

    int main() { int a, b, c ; cin >> a >> b >> c; if (a < b and a < c) cout << "min=" << a; else if (b < a and b < c) cout << "min=" << b; else cout << "min=" << c;

    return 0;
    

    }

    • 1

    Information

    ID
    594
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    2
    Tags
    # Submissions
    94
    Accepted
    55
    Uploaded By