阅读下面的C++程序,输入两个整数 108 和 120,则输出的结果为( )
#include<bits/stdc++.h> using namespace std; int x,y; int f(int a,int b) { if(b==0) return a; return f(b,a%b); } int main() { cin>>x>>y; cout<<f(x,y); return 0; }
12
9
6
3
2