class Persist
	def initialize(str, num)
		@str, @num = str.chomp, num
	end
	def to_s
		"@str=#{@str}\n" +
		"@num=#{@num}\n"
	end
end
