summaryrefslogtreecommitdiff
path: root/hw2/helloYou.cpp
blob: 98f06cefbae48aa8c29a6ee3b979ed0762effa12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CSCI 1300 Fall 2022
// Author: Navan Chauhan
// Recitation: 307 – TA name
// Homework 2 - Problem 2

#include<iostream>

using namespace std;

int main() {
    string name;
    cout << "Please enter your name below:\n";
    cin >> name;
    cout << "Hello, " << name << "!";
    return 0;
}