# x, y, z = input().split()
# x = int(x)
# y = int(y)
# z = int(z)
#
# if x > y:
# t = x
# x = y
# y = t
#
# if y > z:
# t = y
# y = z
# z = t
#
# if x > y:
# print(x)
# else:
# print(y)
# x, y, z = input().split()
# x = int(x)
# y = int(y)
# z = int(z)
#
# if x > y:
# t = x
# x = y
# y = t
#
# if y > z:
# t = y
# y = z
# z = t
#
# if x + y > z:
# print('yes')
# else:
# print('no')
# x, y = input().split()
# x = int(x)
# y = int(y)
# z = int((90-x)//5)
#
# if x%5==0:
# print(y+z)
# else:
# print(y + z + 1)
# loop
# while True:
# for i in range(10):
# print(i)
# for i in range(5, 10):
# print(i)
# for i in range(10, 30, 2):
# print(i)
# inclusive, exclusive
# for i in range(10, 5, -1):
# print(i)
# for i in range(1, 101):
# print(i, end=' ')
# x = input()
# x = int(x)
# for i in range(1, x+1):
# print(i, end=' ')
# x, y = input().split()
# x = int(x)
# y = int(y)
#
# if x > y:
# t = x
# x = y
# y = t
#
# for i in range(x, y+1):
# print(i, end=' ')
# x, y = input().split()
# x = ord(x)
# y = ord(y)
# for i in range(x, y+1):
# print(chr(i), end=' ')
# x, y = input().split()
# x = float(x) * 100
# y = float(y) * 100
# x = int(x)
# y = int(y)
#
# if x < y:
# for i in range(x, y + 2):
# print('%.2f' % (i / 100), end=' ')
#
# if x == y:
# print('%.2f' %(x/100))
# sum = 0
# max = -1
# for i in range(1, 6):
# if i % 2 ==0:
# sum += i
# print(sum)
# x = input()
# x = int(x)
# print('*' * x)
# x, y = input().split()
# x = int(x)
# y = int(y)
# for i in range(x, y+1):
# if i % 2 == 1:
# print(i, end=' ')
top of page

기능을 테스트하려면 라이브 사이트로 이동하세요.
230104
230104
댓글 0개
좋아요
댓글(0)
bottom of page