fork download
  1. #include <stdio.h>
  2. int main () {
  3. int r = 30, x = 3 ,p = r - x;
  4. printf("The profit we made this year is %d", p);
  5. }
Success #stdin #stdout 0s 5268KB
stdin
Standard input is empty
stdout
The profit we made this year is 27