s_id stringlengths 10 10 | p_id stringlengths 6 6 | u_id stringlengths 10 10 | date stringlengths 10 10 | language stringclasses 1
value | original_language stringclasses 11
values | filename_ext stringclasses 1
value | status stringclasses 1
value | cpu_time int64 0 100 | memory stringlengths 4 6 | code_size int64 15 14.7k | code stringlengths 15 14.7k | problem_id stringlengths 6 6 | problem_description stringlengths 358 9.83k | input stringlengths 2 4.87k | output stringclasses 807
values | __index_level_0__ int64 1.1k 1.22M |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s146863387 | p00020 | u560838141 | 1357474394 | Python | Python | py | Accepted | 10 | 4192 | 33 | print raw_input().strip().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,102 |
s673765145 | p00020 | u560838141 | 1357474604 | Python | Python | py | Accepted | 10 | 4188 | 33 | print raw_input().strip().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,103 |
s575853862 | p00020 | u782850731 | 1362102145 | Python | Python | py | Accepted | 20 | 4212 | 170 | from __future__ import (absolute_import, division, print_function,
unicode_literals)
from sys import stdin
print(stdin.readline().upper(), end='') | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,104 |
s596990404 | p00020 | u282635979 | 1363436783 | Python | Python | py | Accepted | 20 | 4192 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,105 |
s726976250 | p00020 | u743065194 | 1363923671 | Python | Python | py | Accepted | 10 | 4216 | 190 | '''
Created on Mar 22, 2013
@author: wukc
'''
from sys import stdin
def toupper(x):
return chr(ord(x)-32) if x.islower() else x
s=stdin.readline()
print("".join(map(toupper,s)[:-1])) | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,106 |
s754950605 | p00020 | u116766943 | 1367745732 | Python | Python | py | Accepted | 10 | 4192 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,107 |
s642413308 | p00020 | u542421762 | 1368197536 | Python | Python | py | Accepted | 10 | 4192 | 137 |
import sys
#input_file = open(sys.argv[1], "r")
#for line in input_file:
for line in sys.stdin:
print line.rstrip("\r\n").upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,108 |
s591875515 | p00020 | u350508326 | 1368463826 | Python | Python | py | Accepted | 10 | 4192 | 72 | if __name__ == "__main__":
text = raw_input()
print text.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,109 |
s383359711 | p00020 | u989717497 | 1370425689 | Python | Python | py | Accepted | 20 | 4192 | 76 | # -*- coding: utf-8 -*-
import sys
line = raw_input()
print line.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,110 |
s635891473 | p00020 | u912573907 | 1375170700 | Python | Python | py | Accepted | 20 | 4192 | 45 | line = raw_input().strip()
print line.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,111 |
s108316502 | p00020 | u912237403 | 1377952223 | Python | Python | py | Accepted | 20 | 4192 | 29 | s=raw_input()
print s.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,112 |
s392372072 | p00020 | u912237403 | 1377952383 | Python | Python | py | Accepted | 10 | 4192 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,113 |
s361949299 | p00020 | u866760195 | 1378346261 | Python | Python | py | Accepted | 10 | 4196 | 36 | a = str(raw_input())
print a.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,114 |
s557138776 | p00020 | u813384600 | 1379501319 | Python | Python | py | Accepted | 10 | 4188 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,115 |
s894922789 | p00020 | u523886269 | 1381384663 | Python | Python | py | Accepted | 20 | 4192 | 59 | #!/usr/bin/python
input = raw_input()
print input.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,116 |
s894788458 | p00020 | u146816547 | 1383027204 | Python | Python | py | Accepted | 10 | 4232 | 465 | a = raw_input()
print a.replace("a","A").replace("b","B").replace("c","C").replace("d","D").replace("e","E").replace("f","F").replace("g","G").replace("h","H").replace("i","I").replace("j","J").replace("k","K").replace("l","L").replace("n","N").replace("m","M").replace("o","O").replace("p","P").replace("q","Q").replace... | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,117 |
s113183888 | p00020 | u146816547 | 1383027491 | Python | Python | py | Accepted | 10 | 4176 | 31 | a = raw_input()
print a.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,118 |
s467914396 | p00020 | u093607836 | 1384830951 | Python | Python | py | Accepted | 10 | 4172 | 26 | print(raw_input().upper()) | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,119 |
s859803169 | p00020 | u621997536 | 1388949031 | Python | Python | py | Accepted | 10 | 4176 | 26 |
print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,120 |
s801963187 | p00020 | u230836528 | 1392307053 | Python | Python | py | Accepted | 10 | 4180 | 232 |
import sys
lineNumber = 0
#for line in ["this is a pen."]:
for line in sys.stdin.readlines():
lineNumber += 1
# get data
#List = map(int, line.strip().split(" "))
s = line.strip()
s = s.upper()
print s | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,121 |
s431614061 | p00020 | u633068244 | 1393380863 | Python | Python | py | Accepted | 10 | 4176 | 31 | s = raw_input().upper()
print s | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,122 |
s056814953 | p00020 | u912237403 | 1394222281 | Python | Python | py | Accepted | 20 | 4176 | 29 | a=raw_input().upper()
print a | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,123 |
s143285856 | p00020 | u912237403 | 1394222308 | Python | Python | py | Accepted | 10 | 4176 | 29 | a=raw_input()
print a.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,124 |
s789928778 | p00020 | u193025715 | 1395392987 | Python | Python | py | Accepted | 10 | 4180 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,125 |
s088074447 | p00020 | u246033265 | 1396616170 | Python | Python | py | Accepted | 20 | 4172 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,126 |
s775510119 | p00020 | u858885710 | 1396775758 | Python | Python | py | Accepted | 10 | 4180 | 45 | sentence = raw_input()
print sentence.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,127 |
s997484542 | p00020 | u708217907 | 1398473127 | Python | Python | py | Accepted | 20 | 4372 | 66 | import sys,string
for s in sys.stdin:
print string.upper(s[:-1]) | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,128 |
s965586684 | p00020 | u708217907 | 1398473211 | Python | Python | py | Accepted | 20 | 4176 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,129 |
s601915041 | p00020 | u504990413 | 1400330943 | Python | Python | py | Accepted | 10 | 4228 | 355 | dic ={'a':'A','b':'B','c':'C','d':'D','e':'E','f':'F','g':'G',\
'h':'H','i':'I','j':'J','k':'K','l':'L','m':'M','n':'N',\
'o':'O','p':'P','q':'Q','r':'R','s':'S','t':'T','u':'U',\
'v':'V','w':'W','x':'X','y':'Y','z':'Z',' ':' ','.':'.'}
array = map(str, raw_input())
output = ''
for ar in array:
... | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,130 |
s245561200 | p00020 | u491763171 | 1400471371 | Python | Python | py | Accepted | 10 | 4180 | 25 | print raw_input().upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,131 |
s291758729 | p00020 | u436634575 | 1401141998 | Python | Python3 | py | Accepted | 30 | 6724 | 112 | a = 'abcdefghijklmnopqrstuvwxyz'
A = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'
print(input().translate(str.maketrans(a, A))) | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,132 |
s758413510 | p00020 | u146816547 | 1403173626 | Python | Python | py | Accepted | 20 | 4180 | 31 | s = raw_input()
print s.upper() | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,133 |
s611675899 | p00020 | u618672141 | 1403749594 | Python | Python3 | py | Accepted | 30 | 6724 | 32 | inp = input()
print(inp.upper()) | p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,134 |
s113917163 | p00020 | u632910712 | 1597762848 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,135 |
s991777663 | p00020 | u342624490 | 1597761237 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,136 |
s759585261 | p00020 | u037566157 | 1597760091 | Python | Python3 | py | Accepted | 20 | 5532 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,137 |
s392341305 | p00020 | u925445050 | 1597758715 | Python | Python3 | py | Accepted | 20 | 5536 | 24 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,138 |
s418842576 | p00020 | u885258138 | 1597730353 | Python | Python3 | py | Accepted | 20 | 5540 | 27 | a=input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,139 |
s927707825 | p00020 | u645087541 | 1597728629 | Python | Python3 | py | Accepted | 20 | 5540 | 35 | s = input()
b = s.upper()
print(b)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,140 |
s656768735 | p00020 | u852547520 | 1597725258 | Python | Python3 | py | Accepted | 20 | 5536 | 39 | n=str(input())
print(str.swapcase(n))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,141 |
s848158325 | p00020 | u064625546 | 1597712841 | Python | Python3 | py | Accepted | 20 | 5532 | 32 | n=str(input())
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,142 |
s565737218 | p00020 | u476754031 | 1597694032 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,143 |
s374412874 | p00020 | u782152619 | 1597685995 | Python | Python3 | py | Accepted | 20 | 5532 | 33 | s=str(input())
print(s.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,144 |
s684112470 | p00020 | u799076010 | 1597676618 | Python | Python3 | py | Accepted | 20 | 5532 | 27 | A=input()
print(A.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,145 |
s044063829 | p00020 | u762022668 | 1597670005 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,146 |
s124274486 | p00020 | u430159711 | 1597666383 | Python | Python3 | py | Accepted | 20 | 5532 | 31 |
a=input()
print(str.upper(a))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,147 |
s236396776 | p00020 | u326077502 | 1597644325 | Python | Python3 | py | Accepted | 20 | 5532 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,148 |
s046902615 | p00020 | u829520323 | 1597581512 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,149 |
s458295890 | p00020 | u878828646 | 1597560322 | Python | Python3 | py | Accepted | 30 | 5540 | 30 | a=input()
print(str.upper(a))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,150 |
s616761812 | p00020 | u427834127 | 1597532671 | Python | Python3 | py | Accepted | 20 | 5532 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,151 |
s148563178 | p00020 | u799016206 | 1597507957 | Python | Python3 | py | Accepted | 20 | 5536 | 32 | a=str(input())
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,152 |
s033148608 | p00020 | u138194441 | 1597485253 | Python | Python3 | py | Accepted | 20 | 5536 | 30 | x = input()
print(x.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,153 |
s477207034 | p00020 | u419548414 | 1597396613 | Python | Python3 | py | Accepted | 20 | 5532 | 36 | n=str(input())
n=n.upper()
print(n)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,154 |
s860068528 | p00020 | u413645175 | 1597327468 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,155 |
s091268882 | p00020 | u355413291 | 1597301340 | Python | Python3 | py | Accepted | 20 | 5536 | 27 | x=input().upper()
print(x)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,156 |
s093443094 | p00020 | u278236319 | 1597129863 | Python | Python3 | py | Accepted | 20 | 5532 | 37 | a =input()
b = str.upper(a)
print(b)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,157 |
s786907968 | p00020 | u996694149 | 1596688370 | Python | Python3 | py | Accepted | 20 | 5536 | 36 | str = input()
print(str.swapcase())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,158 |
s751111948 | p00020 | u548283997 | 1596676405 | Python | Python3 | py | Accepted | 20 | 5536 | 46 | str_org = str(input())
print(str_org.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,159 |
s763389386 | p00020 | u392970366 | 1596627053 | Python | Python3 | py | Accepted | 20 | 5532 | 40 | print("".join(map(str.upper, input())))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,160 |
s077133172 | p00020 | u309196579 | 1596594395 | Python | Python3 | py | Accepted | 20 | 5536 | 40 | print("".join(map(str.upper, input())))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,161 |
s036352026 | p00020 | u455994792 | 1596552943 | Python | Python3 | py | Accepted | 20 | 5536 | 34 | a = str(input())
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,162 |
s784310404 | p00020 | u329155726 | 1596527149 | Python | Python3 | py | Accepted | 20 | 5536 | 29 | t = input()
print(t.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,163 |
s368602207 | p00020 | u900012957 | 1596431708 | Python | Python3 | py | Accepted | 20 | 5540 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,164 |
s489596502 | p00020 | u118506623 | 1596431451 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,165 |
s248482982 | p00020 | u529477970 | 1596387358 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,166 |
s951466851 | p00020 | u421274895 | 1596347237 | Python | Python3 | py | Accepted | 20 | 5536 | 32 | n=str(input())
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,167 |
s749731868 | p00020 | u413704014 | 1596188388 | Python | Python3 | py | Accepted | 20 | 5536 | 33 | str = input()
print(str.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,168 |
s533417325 | p00020 | u525366883 | 1596112516 | Python | Python3 | py | Accepted | 20 | 5536 | 29 | s = input()
print(s.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,169 |
s831641232 | p00020 | u512192552 | 1596100541 | Python | Python3 | py | Accepted | 20 | 5540 | 57 | # coding: utf-8
# Your code here!
print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,170 |
s880493861 | p00020 | u896809383 | 1596035761 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,171 |
s678948260 | p00020 | u677563181 | 1595906869 | Python | Python3 | py | Accepted | 20 | 5532 | 24 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,172 |
s318399729 | p00020 | u709176169 | 1595897976 | Python | Python3 | py | Accepted | 20 | 5532 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,173 |
s090349234 | p00020 | u680047335 | 1595895643 | Python | Python3 | py | Accepted | 20 | 5536 | 32 | n = input()
print(str.upper(n))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,174 |
s011147740 | p00020 | u662362547 | 1595895620 | Python | Python3 | py | Accepted | 20 | 5532 | 35 | a=str(input())
print(str.upper(a))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,175 |
s844076770 | p00020 | u506949161 | 1595833101 | Python | Python3 | py | Accepted | 20 | 5540 | 35 | n=str(input())
print(str.upper(n))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,176 |
s119819987 | p00020 | u167524059 | 1595831447 | Python | Python3 | py | Accepted | 20 | 5532 | 46 | str_org = str(input())
print(str_org.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,177 |
s353868511 | p00020 | u924938296 | 1595830000 | Python | Python3 | py | Accepted | 20 | 5540 | 27 | s=input()
print(s.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,178 |
s273126186 | p00020 | u593595530 | 1595664672 | Python | Python3 | py | Accepted | 20 | 5532 | 31 | sen=input()
print(sen.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,179 |
s976858792 | p00020 | u940983140 | 1595664228 | Python | Python3 | py | Accepted | 20 | 5536 | 35 | a=input()
b=str.upper(a)
print(b)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,180 |
s290282522 | p00020 | u293306835 | 1595518670 | Python | Python3 | py | Accepted | 20 | 5532 | 27 | s=input()
print(s.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,181 |
s796001877 | p00020 | u333382219 | 1595428531 | Python | Python3 | py | Accepted | 20 | 5540 | 29 | a = input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,182 |
s168511534 | p00020 | u497248335 | 1595404625 | Python | Python3 | py | Accepted | 20 | 5536 | 27 | x=input().upper()
print(x)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,183 |
s119527965 | p00020 | u635020217 | 1595358349 | Python | Python3 | py | Accepted | 20 | 5536 | 65 | # coding: utf-8
# Your code here!
n = input()
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,184 |
s428662824 | p00020 | u627612495 | 1595330803 | Python | Python3 | py | Accepted | 20 | 5532 | 29 | n = input()
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,185 |
s776902614 | p00020 | u633358233 | 1595315092 | Python | Python3 | py | Accepted | 20 | 5536 | 27 | a=input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,186 |
s864180367 | p00020 | u361745995 | 1595292843 | Python | Python3 | py | Accepted | 20 | 5536 | 32 | x=str(input())
print(x.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,187 |
s720215460 | p00020 | u528181593 | 1595228862 | Python | Python3 | py | Accepted | 20 | 5532 | 27 | n=input()
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,188 |
s512599660 | p00020 | u869208015 | 1595222076 | Python | Python3 | py | Accepted | 20 | 5532 | 35 | a=str(input())
print(str.upper(a))
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,189 |
s956455546 | p00020 | u251716708 | 1595147722 | Python | Python3 | py | Accepted | 20 | 5536 | 39 | n = input()
a=str.swapcase(n)
print(a)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,190 |
s290132213 | p00020 | u397004753 | 1595142337 | Python | Python3 | py | Accepted | 20 | 5536 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,191 |
s960994292 | p00020 | u514242733 | 1595129409 | Python | Python3 | py | Accepted | 20 | 5532 | 23 | print(input().upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,192 |
s236451780 | p00020 | u661628543 | 1595091221 | Python | Python3 | py | Accepted | 20 | 5536 | 27 | a=input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,193 |
s647986248 | p00020 | u100874602 | 1595050272 | Python | Python3 | py | Accepted | 20 | 5536 | 32 | a=str(input())
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,194 |
s959179814 | p00020 | u673183698 | 1595036440 | Python | Python3 | py | Accepted | 20 | 5532 | 32 | n=str(input())
print(n.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,195 |
s415579791 | p00020 | u555228137 | 1594937357 | Python | Python3 | py | Accepted | 20 | 5532 | 27 | a=input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,196 |
s050927030 | p00020 | u630948380 | 1594740931 | Python | Python3 | py | Accepted | 30 | 5540 | 27 | A=input()
print(A.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,197 |
s609799068 | p00020 | u799752967 | 1594695250 | Python | Python3 | py | Accepted | 20 | 5540 | 62 | # coding: utf-8
# Your code here!
n=input().upper()
print(n)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,198 |
s362835562 | p00020 | u706683821 | 1594687379 | Python | Python3 | py | Accepted | 20 | 5536 | 36 | a=input()
A=a.upper()
print(A)
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,199 |
s732012396 | p00020 | u644959375 | 1594621904 | Python | Python3 | py | Accepted | 20 | 5536 | 27 | s=input()
print(s.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,200 |
s164451062 | p00020 | u259416836 | 1594620907 | Python | Python3 | py | Accepted | 20 | 5532 | 27 | a=input()
print(a.upper())
| p00020 |
<H1>Capitalize</H1>
<p>
Write a program which replace all the lower-case letters of a given text with the corresponding captital letters.
</p>
<H2>Input</H2>
<p>
A text including lower-case letters, periods, and space is given in a line. The number of characters in the text is less than or equal to 200.
</p>
<H2>... | this is a pen.
| THIS IS A PEN.
| 7,201 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.