summaryrefslogtreecommitdiff
path: root/5p23.cpp
diff options
context:
space:
mode:
Diffstat (limited to '5p23.cpp')
-rw-r--r--5p23.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/5p23.cpp b/5p23.cpp
new file mode 100644
index 0000000..861cce0
--- /dev/null
+++ b/5p23.cpp
@@ -0,0 +1,17 @@
+#include <iostream>
+
+/*
+ *
+ * 5.23
+ *
+ *
+ */
+
+int main () {
+
+ int a = 0;
+ int b = 0;
+ std::cin >> a >> b;
+ std::cout << a / b << std::endl;
+ return 0;
+}