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;
|
|
} |