Using ASCII print a section of a hexagon ring tiling.
Here's a small section:
/\__/\ /_/ \_\ /\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ /\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ \ \__/ / \/__\/ Here's a larger section:
\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ Challenge
Given 2 integers h and w, where h is the height and w is the width, output a hxw section of a hexagon ring tiling.
Examples
Input 1
4x4
Output 1
/\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\ Input 2
3x3
Output 2
/\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ /\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ /\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ Input 3
1x3
Output 3
/\__/\ \__/ /\__/\ /_/ \_\/__\/_/ \_\ \ \__/ /\__/\ \__/ / \/__\/_/ \_\/__\/ Input 4
3x6 Output 4
/\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ /\__/\ \__/ /\__/\ \__/ /\__/\ \__/ / /_/ \_\/__\/_/ \_\/__\/_/ \_\/__\/ \ \__/ /\__/\ \__/ /\__/\ \__/ /\__/\ \/__\/_/ \_\/__\/_/ \_\/__\/_/ \_\ Clarifications
- My question is similar to this one: Me Want Honeycomb.
- The input will be on a single line in the form
hxw. - Output to stdout (or something similar).
- This is code-golf so shortest answer in bytes wins.