This commit is contained in:
Zengtudor 2025-07-13 20:01:30 +08:00
parent 82a62a2fc7
commit b0a3e17463

25
src/7/13/U82726.cpp Normal file
View File

@ -0,0 +1,25 @@
#include <cstdint>
#include <cstdio>
#include <iostream>
using ll = int64_t;
bool is_num(char c){
return '0'<=c&&c<='9';
}
ll get_num(){
char c;
do {
c=getchar();
}while (!is_num(c));
ll n=c-'0';
while (is_num(c=getchar())) {
n=n*10+c-'0';
}
return n;
}
int main(){
}