/* * CS 161-020, Lecture 2, Winter 2020 * First C++ program * Author: Kiri Wagstaff * Date: January 8, 2020 */ #include using namespace std; int main() { cout << "Hello, humans!" << endl; return 0; }