#!/usr/local/bin/lua

math.randomseed(os.time())
local rand=math.random(2)
if rand == 1 then
	print("o/")
else
	print("\\o")
end