summaryrefslogtreecommitdiff
path: root/3p1-1p11.cpp
diff options
context:
space:
mode:
Diffstat (limited to '3p1-1p11.cpp')
-rw-r--r--3p1-1p11.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/3p1-1p11.cpp b/3p1-1p11.cpp
new file mode 100644
index 0000000..8f8a647
--- /dev/null
+++ b/3p1-1p11.cpp
@@ -0,0 +1,27 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * 3.1, 1.11
+ *
+ *
+ */
+
+using std::cout;
+using std::cin;
+using std::endl;
+int main () {
+
+ int First = 0;
+ int Second = 0;
+ cin >> First >> Second;
+ cout << endl;
+ First++;
+ while(First < Second) {
+ cout << First << endl;
+ First++;
+ }
+
+ return 0;
+}