View Code of Problem 1

#include <stdio.h>
void main()
{
  int i,j;
  scanf("%d %d",&i,&j);
  printf("%d",i+j);
}

Double click to view unformatted code.


Back to problem 1