行号和部分行高亮的模块为什么我用之后显示结果是下面这样的?
```cpp lines=5-5
#include<bits/stdc++.h>
using namespace std;
int main(){
ios :: sync_with_stdio(false); // 注意!!!Attention!!!
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
```
源代码:
\`\`\`cpp lines=5-5
#include<bits/stdc++.h>
using namespace std;
int main(){
ios :: sync_with_stdio(false); // 注意!!!Attention!!!
int a, b;
cin >> a >> b;
cout << a + b << endl;
return 0;
}
\`\`\`