次のようなステートメントがあるとします。
variable output = (7 * X )/8 //[Here X will be provided by the user]
//say for example , X=8
variable output = (7 * 8 )/8 = 7
ここで、出力変数の値を取得する必要がありますwithout using multiplication (*) and division (/) operator.
任意の提案やヒントをいただければ幸いです。