Skip to content

Commit

Permalink
Create Say Hello With C++.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Anas-Hamo23 committed Aug 26, 2023
1 parent 39cf196 commit 2d5678f
Showing 1 changed file with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
#include <bits/stdc++.h>
using namespace std;
#define ll_a long long
#define sort_Vector(v) sort(v.begin(),v.end())
#define sort_Array(a,n) sort(a,a+n)
#define fast ios_base::sync_with_stdio(false);cin.tie(nullptr);cout.tie(nullptr);

int main() {
fast
string anas;
cin >> anas;
cout<<"Hello, "<<anas;
return 0;
}

0 comments on commit 2d5678f

Please sign in to comment.