mirror of
http://106.12.3.193:3000/violeteverisland/learn_cpp.git
synced 2026-03-07 17:17:33 +08:00
10 lines
150 B
C++
10 lines
150 B
C++
//
|
|
// Created by viole on 2026/2/25.
|
|
//
|
|
#include <iostream>
|
|
using namespace std;
|
|
int main() {
|
|
int num ;
|
|
cin >> num;
|
|
cout << num << endl;
|
|
} |