00001 #include <stdio.h> 00002 #include <iostream.h> 00003 00004 int main() 00005 { 00006 int a = 255; 00007 00008 00009 int b = a; 00010 00011 b ^= 127; 00012 00013 cout << a << ' ' << b <<endl; 00014 00015 00016 return 0; 00017 }