Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
17793 2024-04-23 19:15:29 ZubayearBinKhaled A Plus B Java 0 ms 0 kb Compilation Error
Test Cases
CPU Memory Verdict
1 0 ms 0 kb Compilation Error
2 - - Skipped
3 - - Skipped
4 - - Skipped
5 - - Skipped
6 - - Skipped
Source Code
program.java
Download
  1. public class Dictionary {
  2.  
  3. public static void main(String[] args) {
  4.  
  5. Scanner input = new Scanner(System.in);
  6. int A = input.nextInt();
  7. int B = input.nextInt();
  8. System.out.println(A+B);
  9.  
  10. }
  11.  
  12. }