/*
 * Main.java
 *
 * Created on March 26, 2008, 1:35 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaapplication73;
import java.util.Scanner;
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {
    }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        Scanner sc = new Scanner (System.in);
        double x,y ;
        System.out.println("vavedete x ");
        x = sc.nextDouble( );
        System.out.println("vavedete y ");
        y = sc.nextDouble( );
        if (x == y) System.out.println(" x = y ");
        if (x < y) {x =x*5 ; y =y/8 ;}
   
            
           
                          
    }
}
