#! /usr/bin/env python
# -*- coding: utf-8 -*-
test=1
if '': print "a"
else:
    if '0': print 'b'
    else:
        if 'false': print 'c'

