top of page

소스 코드 제출

공개·회원 52명

20251018

# 암호 해독

# a = 0

# cnt = 0

# n = int(input())

# for i in range(2, n+1) :

# if n%i == 0 :

# a = i


#시저의암호2

# a = input()

# b = []

# c = []

# for x in a :

# x=ord(x)

# if x == 32 :

# b.append(x)

# elif 123<=x+3<=125 :

# b.append(x-23)

# elif x<122 :

# b.append(x+3)

# for x in b :

# c.append(chr(x))

# print(''.join(c))


#두 배수의 합과 차

# def f(a, b) :

# c=0

# d=0

# for i in range(a, b+1) :

# if i%3 == 0 and i%4 != 0 :

# c+=i

# elif i%4 == 0 and i%3 != 0 :

# d-=i

# print(c+d)

#

# a, b = map(int,input().split())

# f(a,b)


#아메리카노

a=0

b=0

k, n = map(int,input().split())

a = k//n

if a%n ==0 :

b=a//n

elif a>=n :

b==1


print(b)

14회 조회
주소 : 경기도 용인시 광교중앙로 302 블루 스퀘어 602호
연락처 : 031) 216 - 1546 ,     031) 215 - 1546
사업자등록번호 : 465-92-00916
​학원 등록 제 4603호
bottom of page