Computer Science, asked by Anonymous, 8 months ago

The following code is not giving the desired output. We want to input value as 15 and obtain output as 30.

Could you pinpoint the problem?

num=input ("Enter Number:")

result=num * 2

Print(result)

Do not spam​

Answers

Answered by AabhaNJ
13

Answer:

in first line correction :

num = input (int) ("Enter Number :")

Explanation:

hope it helps

please mark me as brainliest

Similar questions