Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
20194 2024-05-21 14:27:23 jiupc32 A Plus B C 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.c
Download
  1. include <stdio.h>
  2. int main ()
  3. {
  4. int A , B , C;
  5. printf("Enter two integer number:");
  6. scanf("%d %d", &A &B);
  7. C = A + B;
  8. printf("%d", C);
  9. return o;
  10. }