๐Ÿงฎ PS

์ฝ”๋“œ์—… (Code up) 1049 ~ 1052 (๋น„๊ต ์—ฐ์‚ฐ) ํŒŒ์ด์ฌ ํ’€์ด

Newmon 2020. 1. 31. 23:10

*1049๋ฒˆ

a,b = map(int,input().split())
if a>b : print(1)
else : print(0)

*1050๋ฒˆ

a,b = map(int,input().split())
if a==b : print(1)
else : print(0)

*1051๋ฒˆ

a,b = map(int,input().split())
if a<b or a==b : print(1)
else : print(0)

*1052๋ฒˆ

a,b = map(int,input().split())
if a!=b : print(1)
else : print(0)

*C++/CPPํ’€์ด๋„ code up ์นดํ…Œ๊ณ ๋ฆฌ์— ์žˆ์Šต๋‹ˆ๋‹ค.