package hi.codegym.task.task01.task0107; without t /* कमेंट्स की कोई आवश्यकता नहीं है */ public class Solution { public static void main(String[] args) { int x = 2; int y = 12; // y = x * y; // y = x + y; x = y - x; y = y - x; System.out.println(x); System.out.println(y); } }