#!/usr/bin/env python3 # -*- coding: utf-8 -*- def main(): A, B = input().split() print(f"{A} xor {B}") if __name__ == "__main__": main()