View Code of Problem 1

#include <studio.h>
int main(){
  int x,y;
  scanf("%d %d", &x, &y);
  printf("%d", x+y);
  return 0;
}
/*
Main.c:1:20: fatal error: studio.h: No such file or directory
 #include <studio.h>
                    ^
compilation terminated.
*/

Double click to view unformatted code.


Back to problem 1