1 solutions

  • 0
    @ 2025-9-7 16:27:52

    #include using namespace std;

    int main() { int a; cin >> a; while (a != 0) { cout << a % 10 << " "; a = a / 10; }

    return 0;
    

    }

    Information

    ID
    236
    Time
    1000ms
    Memory
    64MiB
    Difficulty
    2
    Tags
    # Submissions
    69
    Accepted
    42
    Uploaded By