module1{
	 a = b = 1;
	
		if (a == 0) {  print 5; } else { print 10; }
		print a, b;
	
}$