以下のコードの実行結果はどうなりますか? ```ruby class Rectangle def initialize(width, height = width) @width = width @height = height @area = @width * @height end def show_area puts @area end end square = Rectangle.new(5) square.show_area ```