1#!/usr/bin/env python
2import os
3import sys
4
5for i in sys.argv[1:]:
6    print(os.path.realpath(i))
7