--- id: 5900f4e11000cf542c50fff3 challengeType: 5 title: 'Problem 372: Pencils of rays' forumTopicId: 302034 localeTitle: 'Problem 372: Pencils of rays' --- ## Description
Пусть R (M, N) - число точек решетки (x, y), которые удовлетворяют условию M

Примечание: представляет функцию пола.

## Instructions
## Tests
```yml tests: - text: euler372() should return 301450082318807040. testString: assert.strictEqual(euler372(), 301450082318807040); ```
## Challenge Seed
```js function euler372() { // Good luck! return true; } euler372(); ```
## Solution
```js // solution required ```