Computer Science, asked by GINITHOMAS1846, 8 months ago

The following code should take a number as input, multiply it by 8, and print the result. In line 2 of the code below, the * symbol represents multiplication.

Answers

Answered by RuwaisnZaid
2

Explanation:

x = int(input("enter a no"))

y = x*8

print(x"*8","=",y)

Similar questions