#include <iostream>
using namespace std;
int main() {
puts("=================================");
puts(" Contoh Operator Perbandingan");
puts("=================================");
float a, b, c, d;
int x = 8, y = 4;
cout << "Nilai x adalah = " << x << endl;
cout << "Nilai y adalah = " << y << endl;
/* Bernilai Sama Dengan */
a = (x == y);
/* Bernilai Tidak Sama Dengan */
b = (x != y);
/* Bernilai Lebih Besar Dari */
c = (x > y);
/* Bernilai Lebih Kecil Dari */
d = (x < y);
puts("=================================");
cout << "Hasil dari x == y adalah " << a << endl;
cout << "Hasil dari x != y adalah " << b << endl;
cout << "Hasil dari x > y adalah " << c << endl;
cout << "Hasil dari x < y adalah " << d << endl;
puts("=================================");
return 0;
}