您的位置: 首页 > IT文章 > 7-6 简单题 7-6 简单题 分类: IT文章 • 2025-01-22 21:42:01 题解:签到题,直接输出题干要求。 #include <bits/stdc++.h> using namespace std; typedef long long ll; int main() { std::ios::sync_with_stdio(false); cin.tie(0); std::cout<<"This is a simple problem."<<' '; return 0; }