fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int bagaj,el,fiyat;
  5. bagaj=20;
  6. el=11;
  7. fiyat=((bagaj-15)+(el-8))*5;
  8. printf("ödenecek tutar:%d",fiyat);
  9. return 0;
  10. }
Success #stdin #stdout 0s 5280KB
stdin
1
2
10
42
11
stdout
ödenecek tutar:40