⭐✨_ WAP to input a number and if it is odd number by 10 otherwise multiply the number by 5. Display the result _✨⭐
◦•●◉✿❤ GOOD NIGHT GUY'S ❤✿◉●•◦
Answers
Answered by
3
Answer:
Python
Explanation:
a = int(input("Enter a number"))
if(a%2==0):
a=a*5
else:
a=a*10
print(a)
Answered by
6
hope this was helpful for uh...
keep smiling ^-^
Thank uh...!!
Attachments:
Similar questions