#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
int main(){
float val = 1.4306f;
string line;
stringstream ss;
ss<<val;
ss>>line;
cout<<"input : "<<line<<endl;
reverse(line.begin(), line.end());
cout<<"reverce : "<<line<<endl;
return 0;
}