nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
c_cpp
a month ago
293 B
1
Indexable
Never
#include <iostream>
#include <cmath>
#include <string>
using namespace std;

int main() {

    int a, b;

    cin >> a >> b;

    if (a > b) {
        cout << ">";
    }
    else if (a < b) {
        cout << "<";
    }
    else {
        cout << "=";
    }
    return 0;
}

nord vpnnord vpn
Ad