题解 | #牛牛的第二个整数#
牛牛的第二个整数
http://www.nowcoder.com/practice/6f3e10bcf63240a6b7bde95a22cb4cc4
public class Main {
 public static void main(String[] args)
 {
     Scanner sc=new Scanner(System.in);
     int a=sc.nextInt();
     int b=sc.nextInt();
     int c=sc.nextInt();
     System.out.println(b);
 }
}