Write a Java program to read a 5-digit integer into variable n and encrypt it as follows: Replace each digit of n with the result of subtracting it from 13 and getting the remainder after dividing the new value by 10. Then reverse the result and store it in another variable r, and print r. If n = 12345, for instance, the program will print 89012. For this project, only two variables (n and r) are allowed to use in your program.​