Computer Science, asked by manthansark, 5 hours ago

Take two numbers and print addition, subtraction, multiplication and division result

through parameter.write a program on this..​

Answers

Answered by hyperspammm
0

Answer:

x = 1

y = 2

int(x)

int(y)

print(x+y)

print(x-y)

print(x*y)

print(x/y)

Explanation:Here we are creating a variable x and y. x is 1 and y is 2. Then we converted both of them to integer. Then we did the operations and printed them out in the terminal.

P.S Mark me as brainliest

Similar questions