/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
		// your code goes here
		int FLAG_ACTIVITY_SINGLE_TOP = 0x20000000;
        int FLAG_ACTIVITY_NEW_TASK = 0x10000000;
        System.out.println("OR Value : " + (FLAG_ACTIVITY_NEW_TASK|FLAG_ACTIVITY_SINGLE_TOP));
        System.out.println("OR Value in hex: " + String.format("0x%x", (FLAG_ACTIVITY_NEW_TASK|FLAG_ACTIVITY_SINGLE_TOP)));
	}
}