#!/usr/bin/env python3
import os


def main():
    print('Hello world!')


if __name__ == '__main__':
    main()
