//package Car;
//
//class car {
//
// public int Speed;
// public int direction;
//
// public void Turndrect(int n) {
// direction = direction + n;
// }
//
// public int getdirection() {
// return direction;
// }
// public int setSpeed(int n) {
// Speed = n;
// return 0;
// }
//
// int getSpeed() {
// return Speed;
// }
//
//}
//
//
//public class Main {
//
// public static void main(String[] args) {
// // TODO Auto-generated method stub
//
// car car1 = new car();
//
// car1.setSpeed(80);
//
// System.out.println(car1.getSpeed());
//
// }
//
//}
package school;
public class impormaion {
public int Student;
public setStudent();
Student = 10109;
return 0;
}
//
//
//import java.util.*;
//
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
//
// int n = t.nextInt();
//
// int map[][] = new int[n][n];
// int k =1;
// for(int i=0; i<n; i++) {
// for(int j=0; j<n; j++) {
// map[i][j] = k++;
// }
// }
//
// for(int i=0; i<n; i++) {
// if(i%2==0) {
// for(int j=0; j<n; j++) {
// System.out.print(map[i][j]+" ");
// }
// }
// else {
// for(int j=n-1; j>=0; j--) {
// System.out.print(map[i][j]+" ");
// }
// }
// System.out.println();
// }
// }
//}
//
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// Scanner t = new Scanner(System.in);
// int map[][] = new int[11][10];
// int k = 1;
// for(int i=0; i<11; i++) {
// for(int j=0; j<10; j++) {
// map[i][j] = t.nextInt();
// }
// }
// for(int j=0; j<10; j++) {
// int a=0;
// if(map[10][j]==1) {
// for(int i=9; i>=0; i--) {
// if(map[i][j] > 0) {
// a++;
// break;
// }
// else if(map[i][j] < 0) {
// a--;
// break;
// }
// else a=0;
//
// }
// if(a==0)
// System.out.println((j+1) + " safe");
// else if (a<0)
// System.out.println((j+1) + " fall");
// else
// System.out.println((j+1) + " crash");
//
// }
// else System.out.print("");
//
// }
//
//
//
// }
//}
//
//import java.util.*;
//public class Main {
// public static void main(String[] args) {
// int c;
// c= Math.max(10, 20);
// System.out.println(c);
//
// }
//}