#!/usr/bin/python from __future__ import print_function def cat(a, b): return a + b if __name__=="__main__": print (cat("Hello", " world"))