+ 1
Please guys, if one wants to write a program that will ask the user to enter two numbers x and y, and computes it as |x-y|/x+y
The programming language am using is 'python' Pls I need your help
3 Answers
+ 1
import math
x=int(input())
y=int(input())
print(math.abs(x-y)/x+y)
+ 1
x = int(input())
y = int(input())
print(abs(x-y)/(x+y))
#May It Helps You đ
+ 1
Abhay no need to import math abs is a built-in function