- 27,736
- 32,841
#include <iostream>
using namespace std;
int main()
{
string name = "Simon Adebisi";
string phone = "555-205-1010";
string address = "66 Ozwald Rd";
string color = "blue";
cout << "Hi, My name is " << name << " and my phone number is " << phone << ". I live at " << address << " and my favorite color is " << color << endl;
return 0;
}
using namespace std;
int main()
{
string name = "Simon Adebisi";
string phone = "555-205-1010";
string address = "66 Ozwald Rd";
string color = "blue";
cout << "Hi, My name is " << name << " and my phone number is " << phone << ". I live at " << address << " and my favorite color is " << color << endl;
return 0;
}