Computer Science, asked by AhujaTanishq2078, 4 months ago

Print the cube and twice of 20

Answers

Answered by senseofscience
0

Answer:

Python program to do this is:-

cube=20*3

twice=20*2

print(f"cube of 20 is {cube}")

print(f"twice of 20 is {twice}")

Similar questions