Computer Science, asked by krishnaaamal312, 9 months ago

what will be the output of

side = int(input('side'))
area = side*side
print(side,area)​

Answers

Answered by VivekLK
2

Answer:

i)

X = 10

X = X+10

X = X-5

print(X)

X, y = X-2, 22

print(X, Y)

# output

15

13 22

ii)

first = 2

second = 3

third = first * second

print(first, second, third)

first = first + second + third

third = second * first

print (first, second, third)

# output

2 3 6

11 3 33

iii)

side = int(input('side')) # side given as 7

area = side*side

print(side, area)

# output

7 49

Answered by aarushigr8
0

Answer:

Output - 7 49

Similar questions