Hong-Phuc Bui
2025-10-17 85e9b6730a1c181d3c0d4a1a11ea3648dfac717c
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);
};