Zmodyfikuj treść programu tak, aby sprawdzał podzielność liczby przez 17.

using namespace std;


int ResztaZDzielenia(int a, int b)
{
return a%b;
}
int main()
{
int liczba;
cout << "Podaj liczbe: "; cin >> liczba;
cout << "Reszta z dzielenia " << liczba;
cout << " przez 3 wynosi ";
cout << ResztaZDzielenia(liczba, 3) << endl;
return 0;

}