# boolean
a = bool()
print("Boolean of a :", a)
a = 5 > 2
print("Boolean of a :", a)
a = 5 < 2
print("Boolean of a :", a)
print("Type of a :", type(a))
b = 4 == 2
print("Boolean of b :", b)
print("Type of b :", type(b))
c = 4 != 2
print("Boolean of c :", c)
print("Type of c :", type(c))
d = 5 >= 2
print("Boolean of d :", d)
print("Type of d :", type(d))
e = 5 <= 2
print("Boolean of e :", e)
print("Type of e :", type(e))
f = "name" is "name"
print("Boolean of f :", f)
print("Type of f :", type(f))
g = "name" is not "surname"
print("Boolean of g :", g)
print("Type of g :", type(g))

# ex 1
x = int(input("Input X : "))
y = int(input("Input Y : "))
print("Type of X :", type(x));print("Type of Y :", type(y)) 
result1 = bool()
result1 = x > y
print("Result of is X more than Y :", result1)
print("Type of result1 :", type(result1))

a = "bb" > "c"
print("Boolean of a :", a)
print("Type of a :", type(a))

d = "ef" < "f"
print("Boolean of d :", d)
print("Type of d :", type(d))