codeup-1062 비트 단위로 XOR 하여 출력하기 Author: Slay Date: April 28, 2023 11:43:55 Category: codeup Qcodeup 1062 C code123456789101112#include <stdio.h>int main(void){ int a,b; scanf("%d %d", &a, &b); printf("%d\n", a ^ b); return 0;} Author: Slay Permalink: http://sean-baek.github.io/2023/04/28/codeup-1062/ License: Copyright (c) 2021 CC-BY-NC-4.0 LICENSE Slogan: Do you believe in DESTINY? Tag(s): back · home codeup-1063 두 정수 입력받아 큰 수 출력하기 codeup-1061 비트단위로 OR 하여 출력하기