include <math.h> using namespace std;int main(){ for (int i = 300; i > 0; i--){ if (i % 17 == 0){ cout << i << endl;break;} } system("pause");return 0;}