Created
August 19, 2018 05:09
-
-
Save jishanshaikh4/1c5fba237301113f623a7f9328ae8533 to your computer and use it in GitHub Desktop.
First nonusable sample gist to check how it actually works
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Code snippet to compute minimum of two numbers in cpp | |
*/ | |
#include <bits/stdc++.h> | |
using namespace std; | |
int main(){ | |
int a, b; | |
cin >> a >> b; | |
cout << ((a > b) ? a : b); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment