textbased-programms/arithmetic-op.js @@ -11,5 +11,5 @@ const b = 5; const c = Math.floor(a/b); // 2 const d = (a/b) | 0; terminal.print(c); terminal.print(c, d); };