0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 18:00:08 +00:00

15 lines
181 B
C++

#include <iomanip>
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
int d;
int main() {
cin >> d;
cout << double(d / 100.0) << endl;
return 0;
}