#pragma once #include "stdc++.h" struct Token{ int id,type; Token (int id,int type):id(id),type(type){} };