运行下列程序时, 若从键盘上输入“8<enter>”, 则程序的输出结果是( )。
#include<bits/stdc++.h> using namespace std; main() { int a=3, b=5, c; a++; --b; c=a*b; cout<<c; return 0; }
15
16
12
10