#6041 - μ μ 2κ° μ λ ₯λ°μ λλ λλ¨Έμ§ κ³μ°νκΈ°
a, b = map(int,input().split(" "))
print(a%b)
#6042 - μ€μ 1κ° μ λ ₯λ°μ μμ«μ μ΄ν μ리 λ³ννκΈ°
a = float(input())
print(format(a,".2f"))
λΆμ > format(a, ".2f") λ μμ«μ μ΄ν λλ²μ§Έ μ리κΉμ§ λνλΌ λ μ΄μ©νλ€.
#6043 - μ€μ 2κ° μ λ ₯λ°μ λλ κ²°κ³Ό κ³μ°νκΈ°
a, b = map(float, input().split(" "))
print(format((a/b),".3f"))
#6044 - μ μ 2κ° μ λ ₯λ°μ μλ κ³μ°νκΈ°
a,b = map(int,input().split(" "))
print(a+b)
print(a-b)
print(a*b)
print(a//b)
print(a%b)
print(format((a/b),".2f"))
#6045 - μ μ 3κ° μ λ ₯λ°μ ν©κ³Ό νκ· μΆλ ₯νκΈ°
a,b,c = map(int,input().split(" "))
print(a+b+c,end=" ")
i = a+b+c
print(format((i/3),".2f"))
#6046 - μ μ 1κ° μ λ ₯λ°μ 2λ°° κ³±ν΄ μΆλ ₯νκΈ°
a = int(input())
print(a<<1)
λΆμ > μΌμͺ½ λΉνΈμννΈ(<<)κ° λ λμλ μ€λ₯Έμͺ½μ 0μ΄ μ£Όμ΄μ§ κ°μλ§νΌ μΆκ°λκ³ , μ€λ₯Έμͺ½ λΉνΈμννΈ(>>)κ° λ λμλ μΌμͺ½μ 0(0 λλ μμ μ μμΈ κ²½μ°)μ΄λ 1(μμ μ μμΈ κ²½μ°)μ΄ κ°μλ§νΌ μΆκ°λκ³ , κ°μ₯ μ€λ₯Έμͺ½μ μλ 1λΉνΈλ μ¬λΌμ§λ€.
#6047 - 2μ κ±°λμ κ³± λ°°λ‘ κ³±ν΄ μΆλ ₯νκΈ°
a,b = map(int,input().split(" "))
print(a*(2**b))
#6048 - μ μ 2κ° μ λ ₯λ°μ λΉκ΅νκΈ° 1
a,b = map(int,input().split(" "))
if a < b:
print("True")
else:
print("False")
#6049 - μ μ 2κ° μ λ ₯λ°μ λΉκ΅νκΈ° 2
a,b = map(int,input().split(" "))
if a == b:
print("True")
else:
print("False")
#6050 - μ μ 2κ° μ λ ₯λ°μ λΉκ΅νκΈ° 3
a,b = map(int,input().split(" "))
if b >= a:
print("True")
else:
print("False")
#6051 - μ μ 2κ° μ λ ₯λ°μ λΉκ΅νκΈ° 4
a,b = map(int,input().split(" "))
if b != a:
print("True")
else:
print("False")
'Algorithm > Codeup' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[Codeup] μ½λμ κΈ°μ΄ 100μ Python #6052 ~ #6060 (0) | 2022.03.30 |
---|---|
[Codeup] μ½λμ κΈ°μ΄ 100μ Phython #6031 ~ #6040 (0) | 2022.03.26 |
[Codeup] μ½λμ κΈ°μ΄ 100μ Phython #6021 ~ #6030 (0) | 2022.03.24 |
[Codeup] μ½λμ κΈ°μ΄ 100μ Python #6001 ~ #6020 (0) | 2022.03.23 |