fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // your code goes here
  5.  
  6. int a = 15;
  7. int b = 9;
  8.  
  9. printf("Vsota je %d \n", a+b);
  10. printf("razlika je %d \n", a-b);
  11.  
  12.  
  13.  
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
Vsota je 24 
razlika je 6