mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 03:58:47 +00:00
A - Water Pressure
https://atcoder.jp/contests/abc231/submissions/27817073
This commit is contained in:
parent
6f6ee1a68f
commit
0678e7c2fd
14
AtCoder/ABC231/A/A.cpp
Normal file
14
AtCoder/ABC231/A/A.cpp
Normal 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;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user