코드업 기초 100제
1056 : [기초-논리연산] 참/거짓이 서로 다를 때에만 참 출력하기
develop.me.z
2020. 12. 26. 22:49
#include <iostream>
using namespace std;
int main() {
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a^b);
return 0;
}