fork download
  1. #include <stdio.h>
  2. #include <conio.h>
  3. using namespace std;
  4. int main(void) {
  5. int x, y, z;
  6. printf("Введите два целых числа\n");
  7. scanf("%d%d" , &x , &y);
  8. z = x + y;
  9. printf("%d+%d=%d" , x , y , z);
  10. getch();
  11. return 0;
  12. }
  13.  
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
prog.c:2:10: fatal error: conio.h: No such file or directory
 #include <conio.h>
          ^~~~~~~~~
compilation terminated.
stdout
Standard output is empty