12 lines
208 B
C++
12 lines
208 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
#define endl '\n'
|
|
int //最大公约数,辗转相除法
|
|
int gcd(int a, int b) {
|
|
return b ? gcd(b, a % b) : a;
|
|
}
|
|
|
|
int main() {
|
|
|
|
return 0;
|
|
} |