Skip to content
This repository was archived by the owner on Dec 10, 2021. It is now read-only.

Commit 8bee6c6

Browse files
committed
ht2: correct numbers
1 parent 68d055b commit 8bee6c6

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Main.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,15 @@ public static void main(String[] args) {
5353
System.out.println(" `#########''########'");
5454
System.out.println(" `''''''' `''''''");
5555

56+
//task 2
57+
int x = 2;
58+
int y = 12;
59+
// y = x * y;
60+
y = x + y;
61+
x = y - x;
62+
y = y - x;
63+
System.out.println(x);
64+
System.out.println(y);
65+
5666
}
5767
}

0 commit comments

Comments
 (0)