Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
5554 2022-06-29 20:40:00 Tapantor_das A Plus B C 3 ms 1556 kb Wrong Answer - 1
Test Cases
CPU Memory Verdict
1 3 ms 1556 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. int summation;
  5.  
  6. scanf("%d", &a);
  7. scanf("%d", &b);
  8. summation = a + b;
  9. printf("Summation = %d\n", summation);
  10. return 0;
  11. }