# 2번째 컴파일 단계
Bob.cpp: In function 'long long int Bob(std::vector<std::pair<int, int> >)':
Bob.cpp:23:28: error: no matching function for call to '__gcd(long long int&, int&)'
23 | lc=lc/__gcd(lc,mx[i])*mx[i];
| ~~~~~^~~~~~~~~~
In file included from /usr/include/c++/11/vector:62,
from Bob.cpp:1:
/usr/include/c++/11/bits/stl_algo.h:1199:5: note: candidate: 'template<class _EuclideanRingElement> constexpr _EuclideanRingElement std::__gcd(_EuclideanRingElement, _EuclideanRingElement)'
1199 | __gcd(_EuclideanRingElement __m, _EuclideanRingElement __n)
| ^~~~~
/usr/include/c++/11/bits/stl_algo.h:1199:5: note: template argument deduction/substitution failed:
Bob.cpp:23:28: note: deduced conflicting types for parameter '_EuclideanRingElement' ('long long int' and 'int')
23 | lc=lc/__gcd(lc,mx[i])*mx[i];
| ~~~~~^~~~~~~~~~