Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
5837 2022-08-20 11:36:54 ewu_battle22u_41 A Plus B C 2 ms 1548 kb Wrong Answer - 1
Test Cases
CPU Memory Verdict
1 2 ms 1548 kb Wrong Answer
2 - - Skipped
3 - - Skipped
4 - - Skipped
5 - - Skipped
6 - - Skipped
Source Code
program.c
Download
  1. #include<stdio.h>
  2. int main(){
  3. int A,B;
  4. printf("Enter the value of A, B: ");
  5. scanf("%d %d",&A,&B);
  6.  
  7. printf("%d",A+B);
  8.  
  9. return 0;
  10.  
  11.  
  12. }
  13.