summaryrefslogtreecommitdiff
path: root/5p23.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-09-04 16:26:22 +0200
committerOskar <[email protected]>2024-09-04 16:26:22 +0200
commita577cee5a0b44aadadd2f0932a794310bb775a83 (patch)
treeafc64e84e2fb41f76101398f2f68d947a47217b5 /5p23.cpp
parentdebcd0caea344c8993c00b96d56b77ae72fff192 (diff)
more exercise
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;
+}