Untitled

 avatar
unknown
c_cpp
2 years ago
189 B
4
Indexable
#include <iostream>
#include <string>
using namespace std;

int main()
{
	int b;
	cin >> b;
	cout << b % 10;
	b /= 10;
	cout << b % 10;
	b /= 10;
	cout << b % 10;
	return 0;
}
Editor is loading...