def convertStringThenInt(self, pInt):
		converter = BasicStringIntConverter()
		return converter.toInt(converter.toString(pInt))
	def convertIntThenString(self, pString):
		converter = BasicStringIntConverter()
		tempInt = converter.toInt(pString)
		print(tempInt)
		return converter.toString(tempInt)