Horje
c++ Greatest common divisor Code Example
c++ Greatest common divisor
#include <bits/stdc++.h>
using namespace std;
//use c++ 17
int main(){
    long long a,b;
    cin>>a>>b;
    cout<<__gcd(a,b);
	return 0;
}




Cpp

Related
Remove Linked List Elements leetcode Code Example Remove Linked List Elements leetcode Code Example
c++ if else Code Example c++ if else Code Example
json::iterator c++ Code Example json::iterator c++ Code Example
c++ first index 0 or 1 Code Example c++ first index 0 or 1 Code Example
what c++ library is arccos in Code Example what c++ library is arccos in Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9