18 lines
248 B
C++
18 lines
248 B
C++
//
|
|
// Created by ssdd on 11/19/24.
|
|
//
|
|
#ifndef DEFS_H
|
|
#define DEFS_H
|
|
|
|
#include <iostream>
|
|
#include <cstdlib>
|
|
using namespace std;
|
|
|
|
#define pt cout <<
|
|
#define in cin >>
|
|
#define nl endl
|
|
#define pter std::cerr <<
|
|
#define ll long long
|
|
|
|
#endif // DEFS_H
|