#!/usr/bin/env python

import sys

"""
example that just prints the file extension
"""

print(sys.argv[1].split(".")[-1])
