package AllDailyPractice; public class AddTwoNoInJava8 { public static void main(String[] args) { int x=10; int y=15; int c = x+y; System.out.println("Addition of two no is "+c); } }