Computer Science, asked by adithirao4539, 8 months ago

write a program to calculate arthematical operation that is (+,-,*,/)


pls ans this question this is computer​

Answers

Answered by anonymouslygreat
1

Answer:

can't understand your exact question but my guess is to enter two numbers and return the output

here's the answer in Python

x = int(input())

y = int(input())

print(x+y)

print(x-y)

print(x*y)

print(x/y)

Explanation:

we take two nos. as input

we print 4 lines, the sum, difference, product and quotient

Similar questions