Untitled
unknown
plain_text
3 years ago
138 B
6
Indexable
#include <iostream>
using namespace std;
int main()
{
int A;
cin >> A;
while (A > 0)
{
cout << A % 10;
A /= 10;
}
}Editor is loading...
#include <iostream>
using namespace std;
int main()
{
int A;
cin >> A;
while (A > 0)
{
cout << A % 10;
A /= 10;
}
}