#
# print('Hello')
# print('Hello World')
# print('Hello')
# print('World')
# print("'Hello'")
# print('"Hello World"')
# print('"!@#$%^&*()\'')
# print('"C:\Download\\\'hello\'.py"')
# x = input()
#
# print(x, end=' ')
# print(type(x))
# x = input()
# y = input()
#
# print(x, y)
# x, y, z = input().split()
# print(z, y, x)
# x, y = input().split()
#
# print(type(x))
# x = int(x)
# y = int(y)
# print(type(x)) # int: integer, 10: decimal, 8: octa, 16, hex
#
# print(x + y)
# a = input()
# print(a)
# n = input()
# n = int(n)
# print(n)
# x = input()
# y = input()
# print(y)
# print(x)
# x = input()
# print(x)
# print(x)
# print(x)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x)
# print(y)
# x, y = input().split()
# print(y,x)
# n = input()
# print(n, n, n)
# x, y= input().split()
# x = int(x)
# y = int(y)
#
# print('%.2f' %(x/y))
# x = input()
# x = int(x)
# print(-x)
# a = input()
# a = ord(a)
# print(chr(a+1))
# a, b = input().split()
# a = int(a)
# b = int(b)
# c = a-b
# print(c)
# x, y = input().split()
# x = float(x)
# y = float(y)
# m = x*y
# print(m)
# x, y = input().split()
# y = int(y)
# print(x*int(y))
# x = input()
# x = int(x)
# y = input()
# print(x*y)
# x, y = input().split()
# x = int(x)
# y = int(y)
# z = x**y
# print(z)
# x, y = input().split()
# x = float(x)
# y = float(y)
# z = x**y
# print(float(z))
# x, y =input().split()
# x = int(x)
# y = int(y)
# print(x//y)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x%y)
# x, y, z = input().split()
# x = int(x)
# y = int(y)
# z = int(z)
# a = int(x+y+z)
# b = '%.2f'%(a/3)
# print(a, b)
# x, y =input().split()
# x = int(x)
# y = int(y)
# a = x+y
# b = x-y
# c = x*y
# d = x//y
# e = x%y
# f = '%.2f'%(x/y)
# print(a)
# print(b)
# print(c)
# print(d)
# print(e)
# print(f)
# x, y = input().split()
# x = int(x)
# y = int(y)
#
# print(x > y)
# > >= < <= != ==
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x<y)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x==y)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x<=y)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x!=y)
# x = input()
# x = int(x)
# print(x!=0)
# x = input()
# x = int(x)
# print(x==(not 1))
# x, y = input().split()
# x = int(x)
# y = int(y)
# print(x==y==1)
# x, y = input().split()
# x = int(x)
# y = int(y)
# print((x or y)==1)
top of page

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


