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