INPUT :
a=int(input("Enter the number a:"))
b=int(input("Enter the number b:"))
if a>b:
print("a is greater than b")
else:
print("a is not greater than b")
OUTPUT :
CODE : from tkinter import * # Create main window window = Tk() window.title("Healthcare Chatbot") window.geometry('600x600...