Need .cpp using microsoft visual c++ 2010 express

ÿÿ
Need .cpp using Microsoft Visual C++ 2010 express ÿ
Write a program that prints the message, ?Hello, my name is Hal!?Then, on a new line, the program should print the message ?What would you likeme to do?? Then it?s the user?s turn to type in an input. You haven?t yet learned howto do it?just use the following lines of code:ÿ
string user_input;getline(cin, user_input);ÿ
Finally, the program should ignore the user input and print the message ?I am sorry,I cannot do that.?This program uses the string data type. To access this feature, you must place the lineÿ
ÿÿ
Write a program that computes the sum of the first ten positive integers,