7 lines
150 B
C++
7 lines
150 B
C++
|
|
#include <iostream>
|
||
|
|
#include <numeric>
|
||
|
|
|
||
|
|
int main() {
|
||
|
|
std::cout << "The greatest common divisor of 12 and 18 is " << std::gcd(12, 18) << " !\n";
|
||
|
|
}
|