class Main { public static void main(String[] args) { int n=100; for(int i=0;i<=n;i++){ System.out.println(i+"+"+(n-i)+"="+n); } } }