#include <iostream>
using namespace std;

int main() {

	int n;
	cout << "Enter the number you wish to divide by 7";
	cin >> n;
	if ( n % 7 == 0 ) 
	cout << " The number is divisible by 7.";
	else 
	cout << " The number is not divisible by 7.";

	return 0;
	}