001: Output the second integer

 

Total time limit: 
1000ms
 
Memory Limit: 
65536kB
description

Three input integer, the integer output of the second input.

Entry
Only one row, a total of three integers, separated by a space between integers. Is an integer 32-bit signed integer.
Export
Only one line, an integer, the second integer is entered.
Sample input
123 456 789
Sample Output
456
1 #include <iostream>
2 using namespace std;
3 
4 int main(){
5     int a,b,c;
6     cin>>a>>b>>c;
7        cout<<b;
8     return 0;
9 }

 

Guess you like

Origin www.cnblogs.com/geyang/p/12329690.html
001