__int128

能承载39位的大数

#define int long long必开

template <typename _Tp> inline void read(_Tp&x) {//输入
    char ch;bool flag=0;x=0;
    while(ch=getchar(),!isdigit(ch)) if(ch=='-')flag=1;
    while(isdigit(ch)) x=x*10+ch-'0',ch=getchar();
    if(flag) x=-x;
}
inline void print(__int128 x) {//输出
    if(x<0) {x=-x;putchar('-');}
    if(x>9) print(x/10);
    putchar(x%10+'0');
}
__int128 a,b,c;//具体写法
  read(a);
  print(a);
posted @ 2024-01-06 17:28  yufan1102  阅读(4)  评论(0编辑  收藏  举报