From ac8e872731b0d80e21a77870026689a8994b613b Mon Sep 17 00:00:00 2001 From: ShazidMahsrafi Date: Tue, 25 Jun 2024 04:17:07 +0600 Subject: [PATCH] update temp --- Assets/Template.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Assets/Template.cpp b/Assets/Template.cpp index a442b81..5254c97 100644 --- a/Assets/Template.cpp +++ b/Assets/Template.cpp @@ -14,6 +14,11 @@ using namespace std; #define no cout << "NO" << endl #define rep(i,a,b) for(int i=a; i=b; --i) +#define pb push_back +#define ppb pop_back +#define ins insert +#define ff first +#define ss second #define FAST (ios_base::sync_with_stdio(false), cin.tie(nullptr)); ll pow(ll x,ll y,ll m=1e9+7){ll ans=1;x%=m;while(y){if(y&1)ans=(ans*x)%m;x=(x*x)%m;y>>=1;}return ans;}