For me

一位来自gryz的蒟蒻

友链

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
新开业--xky
attack--lgj

59级

高精板子--lqz
肝帝,欧皇--myj
DP看这里--xxy
漂亮学姐--myl

缺省源

#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() {
}
原文地址:https://www.cnblogs.com/lieberdq/p/12179462.html