using System;
class MainClass {
public static void Main (string[] args) {
int x = 1;
int y = 2;
x = x+y;
y = x-y;
x = x-y;
}