Write an exercise program that reads two integers and checks if the last two digits entered numbers are identical. In the event that the same appears to be the same, otherwise they are different.
EXAMPLE:
Enter 2 Numbers: 315 15
They are the same
Enter 2 Numbers: 247 374
They are different
I basically need to know how to write this in c++ so the last digits on the numbers are the same or not.