\[Caring\ for\ everyone,\ trusting\ a\ few people,\ not\ betraying\ anyone,\ only\ loving\ one\ person. \]
\[海底月不可撈,眼前人不可及,看客心傷不起,劇中人不可提. \]
博客密碼為一個八位數的質數
一位來自gryz的蒟蒻
友鏈
63級
WXF說的巨可愛的程子(由於是她讓我更友鏈的, 所以就放在第一了)--ycc
就這個WXF--wxf
和我們老師重名啦--myz
傳說中的LSP--lps
有對象的--caq
無緣2020NOIP--wzd
非常好的學弟--szt
看起來好牛逼的--lhy
還不熟的--zxings
62級
巨強--lzx
最強(skkyk)--zkx
最單純(AFO)--zzh
不要face-- zsf
巨騷--sjp
賊卡的--cgp
看的最多的bolg--yxj
你倒是去問wxy啊--liuzt
神仙--tzt
二區最高--sts
花手--lbh
62級全機房最強-gyh
認真頹廢學習--lkx
61級
機房最強--txt
葉老板--YJG
dear sir--dsr
在線情感專家--lfd_1 lfd_2
頭哥--lyk
巨佬--wxy
快樂暑假--skh
學姐--axm
大哥--cyh
60級
史上最強--zbq
史上最強++--gxb
新開業--xky
attack--lgj
59級
高精板子--lqz
肝帝,歐皇--myj
DP看這里--xxy
漂亮學姐--myl
外校大佬
jp的好基友--lrz
缺省源
#include <cstdio>
#include <iostream>
#include <string>
#include <cstring>
#include <cmath>
#include <algorithm>
#define ll long long
#define rr register
#define inf 1e9
#define MAXN 100010
using namespace std;
inline int read() {
int s = 0, f = 0;
char ch = getchar();
while (!isdigit(ch)) f |= ch == '-', ch = getchar();
while (isdigit(ch)) s = s * 10 + (ch ^ 48), ch = getchar();
return f ? -s : s;
}
void print(int x) {
if (x < 0) putchar('-'), x = -x;
if (x > 9) print(x / 10);
putchar(x % 10 + 48);
}
signed main() {
}