Result Size: 625 x 571
x
 
#include <iostream>
#include <string>
using namespace std;
int main() {
  string fullName;
  cout << "Type your full name: ";
  getline (cin, fullName);
  cout << "Your name is: " << fullName;
  return 0;
}
Type your full name: