Select the line of code that correctly calculates remainder
user_num = int(input('Enter a number to test its divisibility!'))
divide_by = int(input('Enter a number to divide by:'))
remainder = # enter code here
if remainder == 0:
print(user_num, ' is divisible by ', divide_by)
else:
print(user_num, ' is NOT divisible by ', divide_by)
Mark the correct answer(s)