package competitiveexam; import java.util.Scanner; public class CompetitiveExam { public static void main(String[] args) { // TODO code application logic here Scanner sc = new Scanner(System.in); String line=sc.nextLine(); String []token= line.split(" "); int a = Integer.parseInt(token[0]); int b = Integer.parseInt(token[1]); System.out.println(a+b); } }