Print the cube and twice of 20
Answers
Answered by
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