i need this problem original code?If someone have Please Shere here.
package bn.codegym.task.task01.task0107;
/*
āĻā§āύ⧠āĻŽāύā§āϤāĻŦā§āϝā§āϰ āĻĒā§āϰā§ā§āĻāύ āύā§āĻ
*/
public class Solution {
public static void main(String[] args) {
int x = 2;
int y = 12;
x = x * y;
y = x + y;
x = y % x;
y = (y - x)/x;
System.out.println(x);
System.out.println(y);
}
}