View Code of Problem 1

#include<stido.h>
int main()
{
  int a,b,sum;
  scanf("%d,%d",&a,&b);
  sum=a+b;
  printf("%d",sum);
 return 0;
}

/*
Main.c:1:18: fatal error: stido.h: No such file or directory
 #include<stido.h>
                  ^
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 1