Skip to content

Instantly share code, notes, and snippets.

@jishanshaikh4
Created August 19, 2018 05:09
Show Gist options
  • Save jishanshaikh4/1c5fba237301113f623a7f9328ae8533 to your computer and use it in GitHub Desktop.
Save jishanshaikh4/1c5fba237301113f623a7f9328ae8533 to your computer and use it in GitHub Desktop.
First nonusable sample gist to check how it actually works
/* 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