OK, OK, you got Hello, world down, but can you greet specific people?
You'll be given the input of a certain name. Please greet that person using the same format. For example, if the given input is Michael, print Hello, Michael!.
For Python, consider the
input()function.For Java, consider
System.in.For C, consider including
stdio.hand reading input usingread.For C++, consider including
iostreamand reading input usingcin.