Computer Science, asked by ns6161298, 7 months ago

i) write the program to: a) find the area of side. b) find the aum and difference of two numbers. (in computer).​

Answers

Answered by gaganadithyareddy9
0

Answer:

Hey! This is in python...

1)

side = float(input("Enter side: "))

print("Area of square = ", side*side)

2)

x = int(input("Enter a number: "))

y = int(input("Enter another number: "))

print("Sum of numbers = ", x+y)

print("Difference = ", x-y)

Similar questions