Untitled
Anonymous
c_cpp
10/05/2023 6:09 PM
252 B
19
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...