View Code of Problem 1

#include<stido.h>

int main()
{
  int a,b;
  scanf("%d %d",&a,&b);
  printf("%d",a+b);
}
/*
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