All pastes #2103814 Raw Edit

Miscellany

public text v1 · immutable
#2103814 ·published 2012-01-18 14:18 UTC
rendered paste body
import java.util.*;

public class Q1
{
	int a = 0;
	int b = 5;
	
	if (a >=b) 
	{
		b = a;
	} 
	else if (a <= 0) 
	{
		a = b;
	}
	System.out.println(a + " " + b);
}