mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-08 21:58:49 +00:00
15 lines
181 B
C++
15 lines
181 B
C++
#include <iostream>
|
|
#include <iomanip>
|
|
|
|
using std::cin;
|
|
using std::cout;
|
|
using std::endl;
|
|
|
|
int d;
|
|
|
|
int main() {
|
|
cin >> d;
|
|
cout << double(d / 100.0) << endl;
|
|
return 0;
|
|
}
|