1 solutions

  • 1
    @ 2023-12-12 16:05:04

    include <bits/stdc++.h> using namespace std; int n, s=0; int main() { cin >> n; while (n) { s=s*10+n%10; n/=10; } cout << s; return 0; }

    • 1

    Information

    ID
    305
    Time
    1000ms
    Memory
    128MiB
    Difficulty
    1
    Tags
    # Submissions
    112
    Accepted
    23
    Uploaded By