Вы любите пошутить? Я тоже
C |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| #include <iostream>
#include <string>
#include <conio.h>
using namespace std;
int main()
{
cout << "Enter name: ";
string name;
cin >> name;
cout << name << ", matrix has you" << endl;
getch();
return 0;
} |
|