"""
Который час?
"""
hour = input()
a = ["5", "6", "7", "8", "9", "10"]
b = ["11", "12", "13", "14", "15", "16", "17"]
c = ["18", "19", "20", "21", "22"]
d = ["23", "0", "1", "2", "3", "4"]
if hour in a:
print("Утро")
elif hour in b:
print("День")
elif hour in c:
print("Вечер")
elif hour in d:
print("Ночь")
else:
print("Ошибка")
from telebot.types import InputMediaPhoto
def send_album_with_text(message):
wget.download("https://example.com/766793/15675732133090s.jpg")
pic1 = open("15675732133090s.jpg", "rb")
wget.download("https://example.com/766793/15675732133111s.jpg")
pic2 = open("15675732133111s.jpg", "rb")
media = [InputMediaPhoto(pic1, caption="test"), InputMediaPhoto(pic2)]
bot.send_media_group(message.chat.id, media)