#include <iostream> using namespace std; int gcd(int a, int b) { return b ? gcd(b, a % b) : a; } int main(void) { cout << gcd(12, 16); return 0; }