0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00

A - Water Pressure

https://atcoder.jp/contests/abc231/submissions/27817073
This commit is contained in:
Baoshuo Ren 2021-12-11 20:02:56 +08:00
parent 6f6ee1a68f
commit 0678e7c2fd
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

14
AtCoder/ABC231/A/A.cpp Normal file
View File

@ -0,0 +1,14 @@
#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;
}