// CSCI 1300 Fall 2022// Author: Navan Chauhan// Recitation: 307 – TA name// Homework 2 - Problem 2#include<iostream>usingnamespacestd;intmain(){stringname;cout<<"Please enter your name below:\n";cin>>name;// Takes user inputcout<<"Hello, "<<name<<"!";// Prints user's inputreturn0;}