#include
#include
using namespace std;
int main()
{
string surname="", name="";
cout<<"Input surname\n";<br>/*вводим с клавиатуры фамилию*/
cin>>surname;
cout<<"Input name\n";<br>/*вводим с клавиатуры имя*/
cin>>name;
cout<<"\nOutput\n"; <br> for (int i=0; i<10;i++) <br> cout<<surname<<" "<<name<<"\n";<br>}