Computer Science, asked by Sheren7537, 1 day ago

Write a program in python to print the reminder of 237/2

Answers

Answered by maya3227
0

# program in python to print remainder of 237/2

a=237

b=2

rem=a%b

print("Remainder:",rem)

Similar questions