#Problem 1: #Input x=int(input("enter int ")) #Calculations and Output if(x%3==0): print(x,"is divisible by 3") else: print(x, "is not divisible by 3") #Problem 2: #find max and min between two ints print("problem 2") x=int(input("enter x ")) y=int(input("enter y ")) if(x>y): print(x,"is max", y,"is min") elif(x