Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
118137 冯诚阳 输出字符 C++ Accepted 0 MS 272 KB 189 2025-04-24 18:54:19

Tests(1/1):


Code:

#include <iostream> using namespace std; int main() { string num; cin >> num; cout << num[0] << " " << num[1] << " " << num[2] << " " << num[3] << endl; return 0; }