I believe support for these escape sequences has been removed in python 3.12, but these warnings can be easily fixed by converting these strings into raw strings. If you are happy to make this change ...
##1 a = int(input()) b = int(input()) if (a>b): print("a is greater") else: print("b is greater") ##2 a = int(input()) b = int(input()) c = int(input()) if (a>b and a ...