are all squares trapeziums
# By Prameya
# By the way there is no need for this-
# the answer simplly is yes .
from pynput.keyboard import Key, Controller
import time
keyboard = Controller()
ans = input("Do you want to coninue the search - 'Are all squares, trapeziums ?' (y/n) : ")
if ans == "y":
print("ALL squares are trapeziums")
else:
for char in "Terminating...":
keyboard.press(char)
keyboard.release(char)
print(' ')
print(" ")
for cha in "Process Termination Sucessfull":
keyboard.press(cha)
keyboard.release(cha)