code测试页面

Published on: 2026-04-30

Written by: Siriuns
description: 测试代码块显示

行内代码

echo "SGVsbG8sIHdvcmxk" | base64 -d

代码块

#include<iostream>
using namespace std;
typedef long long ll;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(NULL);

#ifdef LOCAL
    freopen(".txt", "r", stdin);
#endif

    return 0;
}