No Title

15 October 2016

Views: 61

#include <iostream>
using namespace std;

int main() {
int x;
cin >> x;

if (x > 100) {
cout << x << " > 100";
} else if (x < 100) {
cout << x << " < 100";
} else {
cout << x << " = 100";
}

return 0;
}

Share