Skip to content

Commit 07ab5d2

Browse files
authored
Create puzzle#1.cpp
1 parent 0f02a5a commit 07ab5d2

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#include<iostream>
2+
#include<vector>
3+
using namespace std;
4+
int main()
5+
{
6+
string first_name;
7+
string lest_name;
8+
cout << "enter your first name : ";
9+
cin >> first_name >> endl;
10+
cout << "enter your lest name name : ";
11+
cin >> lest_name >> endl;
12+
string fullname;
13+
fullname = first_name + lest_name ;
14+
cout << " your full name is : " << fullname << endl;
15+
return 0;
16+
}

0 commit comments

Comments
 (0)