Answer:
In Python:
x = int(input("x: "))
y = int(input("y: "))
Result = (2 * x + 3 * y)/(2 * y)
Print(Result)
Step-by-step explanation:
Get input for x
x = int(input("x: "))
Get input for y
y = int(input("y: "))
Calculate the expression
Result = (2 * x + 3 * y)/(2 * y)
Print the result of the expression
Print(Result)