// Exercise 1

int a = 1
int b = 2
int c = 3
int d = 4

print "$a $b\n$c $d"

// Exercise 2

print a, b
print c, d