# x, y = input().split()
# x = int(x)
# y = int(y)
#
# z = x if x < y else y
#
# print(z)
# x, y = input().split()
# x = int(x)
# y = int(y)
# z = x if x>y else y
# print(z)
#
# x, y , z = input().split()
# x = int(x)
# y = int(y)
# z = int(z)
# h = (x if x<y else y) if (x if x<y else y)<z else z
# print(h)
# x = int(input())
#
# if x > 50:
# print('^^^^')
# elif x > 25:
# print('~~~')
# if x % 2 ==0:
# print('Even')
# else:
# print('Odd')
# elif x > 0:
# print('^@#$^')
# else:
# print('asdasdasd')
#
# x = float(input())
# if x<10 :
# print ('small')
# else:
# print ()
# x, y = input().split()
# x = int(x)
# y = int(y)
# if x==y:
# print('=')
# elif x>y:
# print('>')
# elif x<y:
# print('<')
# x = float(input())
# if (x%7)==0:
# print('multiple')
# else:
# print('not multiple')
# x = int(input())
# if x<10:
# print('small')
# else:
# print('big')
# x, y = input().split()
# x = int(x)
# y = int(y)
# if x>=y:
# print(x-y)
# else:
# print(y-x)
# x, y = input().split()
# x = int(x)
# y = int(y)
# if y==1 or y==2:
# print(100-(x//10000)+13)
# if (x//10000)==100:
# print((x//10000+13))
# else:
# print(12-(x//10000)+1)
# x = input()
# x = int(x)
# if (x-12)<=0:
# print(13-x, 3)
# elif (x==13):
# print(0, 3)
# else:
# print((100 - (x - 13)), 1)
# a, b, c = input().split()
# a = int(a)
# b = int(b)
# c = int(c)
# if (c<10):
# print(1000*a+100*b+c)
# else:
# print(1000*a+100*b+c)
# a, b, c = input().split()
# a = int(a)
# b = int(b)
# c = int(c)
# if (b<10):
# print(100000 * a + 1000 * b + c)
# elif (c<10):
# print(100000*a+100*b+c)
# else:
# print(100000*a+1000*b+c)
# a, b, c = input().split()
# a = int(a)
# b = int(b)
# c = int(c)
# if (b<10):
# print(100000*a+1000*b+c)
# else:
# print(100000*a+100*b+c)
# a, b, c = input().split()
# a = int(a)
# b = int(b)
# c = int(c)
# print(100000*a+1000*b+c)
# x = input()
# x = float(x)
# if (x%2)==0:
# print('even')
# else:
# print('odd')
# for loop
# n = int(input())
# s = 0
#
# for i in range(n+1): # overloading
# s += i
# #print(i, end=' ')
#
# print(s)
# n = int(input())
#
# data = input().split()
#
# for i in range(len(data)):
# print(data[i], type(data[i]), end=' ')
# data[i] = int(data[i])
# print(data[i], type(data[i]), end=' ')
# for i in range (1, 101):
# print(i,end=' ')
# n = int(input())
# for i in range (1, (n+1)):
# print(i, end= ' ')
top of page

실제 작동 상태를 확인하려면 라이브 사이트로 이동하세요.
수정: 2022년 8월 10일
20220810
20220810
댓글 0개
좋아요
댓글(0)
더 이상 게시물에 대한 댓글 기능이 지원되지 않습니다. 자세한 사항은 사이트 소유자에게 문의하세요.
bottom of page


