Solution of 1001

 


First try it yourself



#include <stdio.h>
 
int main() {
 
  int A,B,X;
  scanf("%d%d",&A,&B);
  X=A+B;
  printf("X = %d\n",X);
  
  
    return 0;
}

Post a Comment

Previous Post Next Post