View Code of Problem 110

import java.util.Scanner;
 
public class Main
{
  public static void main(String[] args)
  {
    Scanner scan=new Scanner(System.in);
    while(scan.hasNext())
    {
      int a=scan.nextInt();
      int b=scan.nextInt();
      
      
      System.out.println(a+b);
      
    }
    
  }
}

Double click to view unformatted code.


Back to problem 110