View Code of Problem 1

int main(){
	int num1 = 0;
  	int num2 = 0;
  	scanf("%d %d",&num1,&num2);
  	printf("%d\n",num1+num2);
  	return 0;
}

Double click to view unformatted code.


Back to problem 1