Loading...
Submission
Id When Author Problem Language CPU Memory Verdict
16982 2024-04-23 17:15:08 ewu_intra24_mock_u_69 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.  
  3. int main{
  4. int A,B;
  5. scanf("%d %d",&A,&B);
  6.  
  7. if(A>=1&&B<=100){
  8. printf("%d",A+B);
  9. return 0;
  10. }
  11. }