commit d5f4f817c001afc15691d5a23a60f47b6d1903cf Author: Ben Morgan Date: Wed Sep 2 19:54:41 2020 -0600 Day 1 commit diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..030d0b4 --- /dev/null +++ b/main.cpp @@ -0,0 +1,17 @@ +#include +using namespace std; + +int main() { + int a, b, c; + cout << "Please enter two numbers to add." << endl; + cin >> a >> b; + + c = a + b; + + if (c == 1979) { + cout << "Special number!!!!!!" << endl; + } + + cout << c << std::endl; + return 0; +} diff --git a/slides.pdf b/slides.pdf new file mode 100644 index 0000000..449fa78 Binary files /dev/null and b/slides.pdf differ