Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
Merge pull request #1 from eidsonsa/eidsonsa-patch-1
Browse files Browse the repository at this point in the history
shrug or not?
  • Loading branch information
eidsonsa authored Oct 16, 2018
2 parents 97f6e53 + 8b7c15c commit 3a3f2f1
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions shrug or not/main.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
#include <bits/stdc++.h>
#define endl '\n'
using namespace std;
int main(int argc, char *argv[]) {
ios::sync_with_stdio(false);
cin.tie(nullptr);

char answer;
cout << "Shrug or not? (Y/N)" << endl;
cin >> answer;
if (answer == 'Y'){
cout << "¯\_(ツ)_/¯" << endl;
}
else{
cout << "nah" << endl;
}

return 0;
}

0 comments on commit 3a3f2f1

Please sign in to comment.