把这段代码复制到洛谷IDE,你会得到一棵圣诞树
别较真代码了都是瞎写的
#include<cstdio>
#include<iostream>
using namespace std;
const int mod=998244353;
void Min(int& x,int y){x=min(x,y);}
void Max(int& x,int y){x=max(x,y);}
inline int read(){
int x=0,f=1;char ch=getchar();
while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+(ch^48);ch=getchar();}
return x*f;}
int main(){
cout<<"Merry Xmas";
return 0;}