def test_method():
	print "this is a test method to check sum"
	a = 4
	b = 3
	return a+b

print test_method()