9 lines
226 B
C++
9 lines
226 B
C++
#include <iostream>
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
int main() {
|
|
string dog = "Benjamin", Dog = "Samba", DOG = "Bernie";
|
|
|
|
cout << "The three dogs are named " << dog << ", " << Dog << ", and " << DOG << endl;
|
|
}
|