mirror of
https://github.com/wczffl-503/OI-Codes.git
synced 2025-05-11 00:30:27 +08:00
13 lines
170 B
C++
13 lines
170 B
C++
#include <bits/stdc++.h>
|
|
using namespace std;
|
|
int main(){
|
|
int first;
|
|
int second;
|
|
int third;
|
|
cin >> first;
|
|
cin >> second;
|
|
cin >> third;
|
|
cout <<second;
|
|
return 0;
|
|
}
|