#!/usr/bin/python3
from time import sleep


def bye():
    print("Bye!")
    sleep(60)


if __name__ == "__main__":
    bye()
