Computer Science, asked by nisha948bhardwaj, 7 months ago

write a programe to divide 10 by 2 display resilt​

Answers

Answered by Anonymous
0

Explanation:

a = int ( input ( " Enter number 1 --- " ) )

b = int ( input ( " Enter number 2 --- " ) )

c = a % b

print ( " The required result is : " , c )

Similar questions