#include <iostream>
using namespace std;
int main() {
int t;
cin >> t;
if (t > 30)
cout << "Осталось еще много времени";
else if (t > 15)
cout << "Время еще много";
else if (t >= 7)
cout << "Осталось совсем немного времени";
else if (t >= 1)
cout << "Урок почти завершен";
else if (t == 0)
cout << "Урок окончен";
else
cout << "Bad vestido";
return 0;
}⚠️Content was pasted as plain text and auto-formatted as a code block. Use the Code Block button in the editor for proper formatting.