阅读以下程序,输入6 7,输出的结果是什么?
int a, b; cin >> a >> b; if (a % 2 == 0) a /= 2; if (a % 2 != 0) a = a * 3 + 1; cout << a + b;
28
17
10
13