URI Problem 1001 Solution in Java
Problem Details Link
Solution:
Solution:
import java.util.Scanner;
/**
*
* @author ParveZ
*/
public class Uri1001 {
public static void main(String []args){
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
int B = sc.nextInt();
int X = A+B;
System.out.println("X = "+X);
}
}
Comments
Post a Comment