URI Problem 1003 Solution in Java
Problem Details Link
Solution:
Solution:
import java.util.Scanner;
/**
* @Author : Muhammad Harun-Or-Roshid
* @E-mail : md.parvez28@gmail.com
* @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);
}
}
Comments
Post a Comment