Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
183 B
0
Indexable
Never
#include <iostream>

using namespace std;

int main()
{
	int A;
	int tempA;
	cin >> A;
	tempA = A;

	while (tempA > 0) {
		cout << tempA % 10;
		tempA /= 10;
	}
}