/*
 * Main.java
 *
 * Created on April 2, 2008, 3:02 PM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package javaapplication77;
import java.util.Scanner;
/**
 *
 * @author student
 */
public class Main {
    
    /** Creates a new instance of Main */
    public Main() {  
   }
    
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {Scanner ms=new Scanner(System.in);
    System.out.println("Vavedete x ; ");
    int x= ms.nextInt();
    switch(x)
    {case 0:System.out.println("nula");break;
        case 1: System.out.println("edno");
       
        case 3: System.out.println("tri");
        
        case 5 :System.out.println("pet");
        case 7: System.out.println("sedem");
          case 9: System.out.println("devet");break;
         case 2: System.out.println("dve");
         case 4 :System.out.println("4etiri");
         case 6: System.out.println("6est");
         case 8: System.out.println("osem");
       
         
        default :System.out.println("ne ste vuveli cifri ot 1 do 5");
    }
    
    }
    
}
