Skip to content

Instantly share code, notes, and snippets.

@Baekjoon
Last active August 29, 2015 14:21
Show Gist options
  • Save Baekjoon/d7185a34448746992dec to your computer and use it in GitHub Desktop.
Save Baekjoon/d7185a34448746992dec to your computer and use it in GitHub Desktop.
if
#include <iostream>
using namespace std;
int main() {
int a, b;
cin >> a >> b;
if (a < b) {
cout << "작다" << endl;
}
if (a > b) {
cout << "크다" << endl;
}
if (a == b) {
cout << "같다" << endl;
} else {
cout << "같지 않다" << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment