summaryrefslogtreecommitdiff
path: root/7p9.cpp
diff options
context:
space:
mode:
Diffstat (limited to '7p9.cpp')
-rw-r--r--7p9.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/7p9.cpp b/7p9.cpp
new file mode 100644
index 0000000..9f5d283
--- /dev/null
+++ b/7p9.cpp
@@ -0,0 +1,19 @@
+#include <iostream>
+#include "person.hpp"
+
+/*
+ *
+ * 7.9
+ *
+ * Done in person.hpp
+ *
+ */
+
+int main () {
+
+ Person person1;
+ read(std::cin, person1);
+ print(std::cout, person1);
+ std::cout << std::endl;
+ return 0;
+}