#include "stdio.h"

/**
 * @brief 程序的主函数
 * 
 * @return int 程序结束的状态,0表示成功
 */
int main()
{
    printf("同志们加油啊,不然要寄啦!\n");
    return 0;
}