" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
#include <string>
using namespace std;
int main()
{
string imie,nazwisko;
cout << "Podaj imie: ";
cin >> imie;
cout << "Podaj nazwisko: ";
cin >> nazwisko;
cout << imie << " " << nazwisko;
return 0;
}
#include <string>
using namespace std;
int main()
{
string a;
string b;
cout << "podaj imie" << endl;
cin >> a;
cout << "podaj nazwisko" << endl;
cin >> b;
cout << "wiec nazywasz sie"
<< a
<< "a twoje nazwisko to"
<< b;
return 0;
}