beecrowd | 1001
Extremely Basic
Question: 1001
Solve
//Rony Ahmmed BDU-ICTE (1001)
import java.util.Scanner;
public class Main {
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);
}
}
No comments:
Post a Comment