From 0678e7c2fdd4ad8076e89e28badffd19cf221f19 Mon Sep 17 00:00:00 2001 From: Baoshuo Date: Sat, 11 Dec 2021 20:02:56 +0800 Subject: [PATCH] A - Water Pressure https://atcoder.jp/contests/abc231/submissions/27817073 --- AtCoder/ABC231/A/A.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 AtCoder/ABC231/A/A.cpp diff --git a/AtCoder/ABC231/A/A.cpp b/AtCoder/ABC231/A/A.cpp new file mode 100644 index 00000000..21f64d05 --- /dev/null +++ b/AtCoder/ABC231/A/A.cpp @@ -0,0 +1,14 @@ +#include +#include + +using std::cin; +using std::cout; +using std::endl; + +int d; + +int main() { + cin >> d; + cout << double(d / 100.0) << endl; + return 0; +}