11 lines
128 B
C++
11 lines
128 B
C++
#include <iostream>
|
|
|
|
|
|
using namespace std;
|
|
|
|
int main(){
|
|
|
|
cout << "Hello this is Patrick" << endl;
|
|
|
|
return 0;
|
|
} |