public class Methods {
public static void main(String[] args) {
    int myNum = myNumber();
    System.out.println(myNum);
}   
static int myNumber(){
    return 03233574633;
}
}
When I call a method to display my phone number on screen, it display something this 443480475..
Why is this happening in Java Programming.. Please help