0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-08 13:58:48 +00:00
Baoshuo Ren 2022-05-09 19:12:05 +08:00
parent 155ca99a6d
commit d89ee4b62d
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

17
AcWing/808/808.cpp Normal file
View File

@ -0,0 +1,17 @@
#include <algorithm>
#include <iostream>
using std::cin;
using std::cout;
const char endl = '\n';
int a, b;
int main() {
std::ios::sync_with_stdio(false);
cin >> a >> b;
cout << std::__gcd(a, b) << endl;
return 0;
}