Computer Science, asked by shatakshi935, 3 months ago

To accept two different numbers. Multiply the smaller number by 5 and print the result.


pjgaikar06: In which language we have to do it???
pjgaikar06: I am giving answer written in python
shatakshi935: We have to answer in english I mean it's a computer science question ..

Answers

Answered by Anonymous
2

int a = 13;

int b= 5;

if (a> b)

Answered by pjgaikar06
0

one = int(input("1st number"))

two = input("2nd number")

result = one * 5

print(result)

Similar questions