import java.util.Scanner; public class newbuffy {                 public static void main (String arg[]){                 Scanner vampire = new Scanner(System.in);                                 System.out.println("Which person should the Vampire eat?");                 System.out.println("Giles is 1, Willow is 2, Xander is 3, Buffy is 4, and Angel is 5");                 System.out.println();                                 int giles, willow, xander, buffy, angel;                 int compare = vampire.nextInt();                                 giles = 1;                 willow = 2;                 xander = 3;                 buffy = 4;                 angel = 5;                                 switch (compare){                                 case 1:                         System.out.println("The Vampire eats Giles!");                         break;                                         case 2:                         System.out.println("The Vampire eats Willow!");                         break;                                         case 3:                         System.out.println("The Vampire eats Xander!");                         break;                                         case 4:                         System.out.println("The Vampire eats Buffy!");                         break;                                         case 5:                         System.out.println("The Vampire eats Angel!");                     break;                    case null:                 default:                         System.out.println("The Vampire eats all the ponies in Ponyville because you couldn't bother to type any of the fucking numbers.");                                         }                                                         }   }