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