View Code of Problem 1

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

Double click to view unformatted code.


Back to problem 1