#ABC108C. Triangular Relationship
Triangular Relationship
题目描述
You are given integers and . Find the number of triples of positive integers not greater than such that and are all multiples of . The order of does matter, and some of them can be the same.
给你整数 和 。求不大于 的正整数 的三倍数 和 都是 的倍数的个数。 的顺序确实很重要,其中一些可能是相同的。
输入格式
输入内容按以下格式标准输入:
输出格式
打印不大于 且 和 都是 的倍数的正整数三元组 的个数。
样例 #1
样例输入 #1
3 2
样例输出 #1
9
样例 #2
样例输入 #2
5 3
样例输出 #2
1
样例 #3
样例输入 #3
31415 9265
样例输出 #3
27
样例 #4
样例输入 #4
35897 932
样例输出 #4
114191
说明
数据规模与约定
- 和 都是整数。
样例 解释
$(1,1,1),(1,1,3),(1,3,1),(1,3,3),(2,2,2),(3,1,1),(3,1,3),(3,3,1)$ 和 满足条件。