pbj0812의 코딩 일기

[PYTHON] 글자 입력 반대로 출력하기 본문

ComputerLanguage_Program/PYTHON

[PYTHON] 글자 입력 반대로 출력하기

pbj0812 2018. 9. 1. 02:14

import sys

import math


# Auto-generated code below aims at helping you parse

# the standard input according to the problem statement.


s = input().split()[::-1]


# Write an action using print

# To debug: print("Debug messages...", file=sys.stderr)


print(*s)

Comments