用format提交了一下显示CE,
提交记录
#include <bits/stdc++.h> #include <format> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int a, b; cout << format("{}", a * b); return 0; }
(随便选了一题)