TEST 2 Problem 1 (25 points) Give an example of the input to receive an output "NO". EXPLAIN YOUR CALCULATIONS! a = int(input("enter a ")) b = int(input("enter b ")) if((a+b)%3==0 and b//a != 2): print("YES") else: print("NO")