#!/usr/bin/python
# -*- coding: utf-8 -*-
tuple_variable = tuple(["1","2","3"])
print tuple_variable
one, two, three = tuple_variable
print one
print two
print three