What will be the output of the following code snippet? If th…

What will be the output of the following code snippet? If the program results in an error, put down ‘ERROR’.  a = 10b = 20c = 30if a != b and b == c:    print(“This is true”)elif not(a != b and b!=c):    print(“No, this is true”)elif a == b or b != c:    print(“Are you sure? This is true”)else:     print(“All of the above is false”)