0
Как это решается?
1 Réponse
0
public class Program
{
    public static void main(String[] args) {
	       int beer  = 64;
        int whisky = 23;
       //calculate the sum and output it
       
       int total = beer + whisky;
       System.out.println(total);
        
	}
}



