Write a program in python to print the reminder of 237/2
Answers
Answered by
0
# program in python to print remainder of 237/2
a=237
b=2
rem=a%b
print("Remainder:",rem)
Similar questions