#!/usr/bin/env python3

import os


for name in sorted(os.listdir()):
    if name != '.git':
        print(name)
