Geometry: Point in a Rectangle?
The code has been modified slightly and now uploaded to the site.

32.cpp
#include <iostream>
using namespace std;
int main(){
int first;
int second;
std::cout << "Enter two integers: \n";
std::cin >> first;
std::cin >> second;
if (first % second == 0){
std::cout << first << " is divisible by " << second << "\n";
}
else {
std::cout << first << " is not divisible by " << second << "\n";
}
}