URI Problem (Simple Sum) 1003:
Simple Sum is a basic problem on URI online judge for novice problem solver.
You can find details on this Link.
import java.util.Scanner;
/**
* @Author : Muhammad Harun-Or-Roshid
* @Date : Oct 5, 2016
* @Time : 8:22:41 PM
*/
public class Uri1003 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A= sc.nextInt();
int B= sc.nextInt();
int SOMA = A+B;
System.out.println("SOMA = "+SOMA);
}
}
0 Comments