#include <iostream> #include <string> using namespace std; int main() { string yourName; cout << "Entrez votre nom : "; cin >> votreNom; cout << "Bonjour " + votreNom << endl; return 0; }