单项选择题

有如下程序段:
int i=1;int j=4;
int main()
int i=8,j=1;
cout<<i<<j<<endl;

运行时的输出结果是______。

A.14
B.81
C.88
D.18