๐งฎ 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 ์นดํ ๊ณ ๋ฆฌ์ ์์ต๋๋ค.