cs161AWinter2024/echo.cpp

12 lines
179 B
C++

#include <iostream>
using namespace std;
int main(){
string stuff;
cout << "Enter a thing: " << endl;
cin >> stuff;
cout << "You said: " << stuff << endl;
return 0;
}