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 stringlengths 1 5 | memory stringlengths 1 7 | code_size stringlengths 1 6 | code stringlengths 1 539k |
|---|---|---|---|---|---|---|---|---|---|---|---|
s096863351 | p02396 | u640809202 | 1517667388 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | n=0
i = int(input())
while i != 0:
n+=1
print("Case " + str(n) + ":" +i)
i int(input())
|
s612170623 | p02396 | u640809202 | 1517667415 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | n=0
i = int(input())
while i != 0:
n+=1
print("Case " + str(n) + ":" +i)
i = int(input())
|
s668487024 | p02396 | u798565376 | 1517684198 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | l = list(map(int, input().split(\r)))
for i in range(1, len(l)):
if not l[i - 1] ==0:
print('Case {}: {}'.format(i, l[i - 1]))
|
s149036503 | p02396 | u798565376 | 1517685094 | Python | Python3 | py | Runtime Error | 0 | 0 | 169 | l = list(map(int, input().splitlines()))
for i in range(1, len(l) + 1):
if l[i - 1] != 0:
print('Case {}: {}'.format(i, l[i - 1]))
else:
return
|
s295585241 | p02396 | u313021086 | 1518181723 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | a = int(input())
i = 0
while a != 0:
print("Case " + i + ": " + a)
i += 1
a = int(input())
|
s245801480 | p02396 | u429841998 | 1518397726 | Python | Python3 | py | Runtime Error | 0 | 0 | 234 | x = []
a = 0
while True:
x.append(int(input()))
if x[a] == 0 or a == 9999:
break
a += 1
i = 0
while True:
if x[i] == 0 or i == 10000:
break
print('Case ' + str(i + 1) + ': ' + str(x[i]))
i += 1
|
s093148507 | p02396 | u373340964 | 1519118652 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | i = 1
while True:
x = int(input())
if x == 0:
break
print("Case {i}:{x}".format(i, x))
|
s720306670 | p02396 | u373340964 | 1519118739 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | i = 1
while True:
x = int(input())
if x == 0:
break
print("Case {i}: {x}".format(i, x))
i += 1
|
s008264252 | p02396 | u641082901 | 1519660499 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | c = 1
while True :
print("Case {0}: {1}".format(c, input()))
c += 1
|
s102335634 | p02396 | u613534067 | 1520131964 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | import sys
lines = sys.stdin.readlines()
for i in range(lines):
a = int(lines[i])
if(a == 0):
break
else:
print("Case {0}: {1}".format(i+1, a))
|
s330702347 | p02396 | u613534067 | 1520131985 | Python | Python3 | py | Runtime Error | 0 | 0 | 176 | import sys
lines = sys.stdin.readlines()
for i in range(lines.len):
a = int(lines[i])
if(a == 0):
break
else:
print("Case {0}: {1}".format(i+1, a))
|
s204097846 | p02396 | u613534067 | 1520131997 | Python | Python3 | py | Runtime Error | 0 | 0 | 179 | import sys
lines = sys.stdin.readlines()
for i in range(lines.length):
a = int(lines[i])
if(a == 0):
break
else:
print("Case {0}: {1}".format(i+1, a))
|
s417320731 | p02396 | u005739171 | 1520229382 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | a = []
x = 1
while True:
n = input()
if n == 0:
break
a.append(n)
x += 1
print ("Case",x,":",a)
|
s669775518 | p02396 | u017435045 | 1520751572 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | while True:
x=int(input())
print(x)
if x=0:
break
|
s564847216 | p02396 | u017435045 | 1520751605 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | while True:
x=int(input())
print(x)
if x=0:
break
|
s371416836 | p02396 | u507758132 | 1521101556 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | cnt = 1
c = input()
while c != 0:
print(cnt,c)
c = input()
cnt += 1
|
s072076777 | p02396 | u507758132 | 1521101586 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | cnt = 1
c = raw_input()
while c != 0:
print(cnt,c)
c = raw_input()
cnt += 1
|
s501486051 | p02396 | u507758132 | 1521101732 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | cnt = 1
c = int(input())
while c != 0:
print(Case,cnt,:,c)
c = int(input())
cnt += 1
|
s763133728 | p02396 | u507758132 | 1521101832 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | cnt = 1
c = int(input())
while c != 0:
print("Case {0}: {1}".format(cnt).format(c))
c = int(input())
cnt += 1
|
s387000479 | p02396 | u566311709 | 1521277081 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | a = []
while True:
n = int(input())
if n == 0:
break
a.append(n)
for i in range(len(a)):
print("Case {0}: {1}".format(i + 1, a[i]))
|
s699273353 | p02396 | u566311709 | 1521277113 | Python | Python3 | py | Runtime Error | 0 | 0 | 147 | a = []
while True:
n = int(input())
if n == 0:
break
a.append(n)
for i in range(len(a)):
print("Case {0}: {1}".format(i + 1, a[i]))
|
s709958632 | p02396 | u648117624 | 1521363630 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | #coding: UTF-8
x = input()
i = 1
while x !=0:
print('Case '+i+': '+x)
i +=1
|
s412211172 | p02396 | u648117624 | 1521363732 | Python | Python3 | py | Runtime Error | 0 | 0 | 87 | #coding: UTF-8
x=input()
i=1
while x !='0':
print('Case '+i+': '+x)
i +=1
|
s197567040 | p02396 | u464859367 | 1521758493 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | while True:
n = 1
if input() == 0:
break
print("Case " + n + ": " + str(input()))
n+=1
|
s726985429 | p02396 | u464859367 | 1521758577 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | n = 1
while True:
if int(input()) == 0:
break
print("Case " + n + ": " + str(input()))
n+=1
|
s240003192 | p02396 | u621084859 | 1522375002 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | h = 0
while True:
x = int(input());
h += 1
if x == 0:
break
print("Case {}: {}".format(c, x))
|
s379454919 | p02396 | u621084859 | 1522387350 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | h=1
x=int(input())
while x>=0:
print('"case" {} :{}'.format(h,x))
x= int(input())
h+=1
|
s550625885 | p02396 | u621084859 | 1522388299 | Python | Python3 | py | Runtime Error | 0 | 0 | 102 | i=1
x=int(input())
while x > 0:
print("case {0}: {1}".format(h, x))
x = int(input())
i+=1
|
s422342652 | p02396 | u002193969 | 1522461195 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | i = 0
while input() != 0:
i += 1
print('Case ',i,': ',input(),sep='')
|
s601146614 | p02396 | u886729200 | 1522679459 | Python | Python3 | py | Runtime Error | 0 | 0 | 246 | x = []
while(1):
inp = int(input())
if inp !=0:
x.append(inp)
else:
x.append(inp)
break
print(x)
j=0
while(1):
if(x[j]!=0):
print("Case {} : {}".format(i,x[j]))
j+=1
else:
break
|
s205936506 | p02396 | u405987720 | 1522855630 | Python | Python | py | Runtime Error | 0 | 0 | 126 | j = 0
While(True):
i = int(raw_input())
j += 1
if i != 0:
print("Case " + str(j) + ": " + str(i))
else:
break
|
s603234123 | p02396 | u405987720 | 1522855712 | Python | Python | py | Runtime Error | 0 | 0 | 140 | j = 0
While(True):
temp = raw_input()
i = int(temp)
j += 1
if i != 0:
print("Case " + str(j) + ": " + str(i))
else:
break
|
s696589136 | p02396 | u682153677 | 1522992820 | Python | Python3 | py | Runtime Error | 0 | 0 | 162 | # -*- coding: utf-8 -*-
a = []
while True:
n = input()
if n == 0:
break
a.append(n)
for i in len(a):
print('Case%s: %s' %(i + 1, a[i]))
|
s447297824 | p02396 | u682153677 | 1523073674 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | i = 1
while True:
x = int(input())
if x == 0: break
print("Case {}: {}".format(i, n))
i += 1
|
s336450786 | p02396 | u359372421 | 1523352161 | Python | Python3 | py | Runtime Error | 0 | 0 | 43 | while True:
print("Case 1: " + input())
|
s194729105 | p02396 | u244493040 | 1523630380 | Python | Python3 | py | Runtime Error | 0 | 0 | 49 | i = 1
while x = input(): print('Case ' i ': ' x)
|
s241801682 | p02396 | u244493040 | 1523630518 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | i = 1
while 1:
x = input()
if !x: break
print('Case ' i ': ' x)
i += 1
|
s153267361 | p02396 | u244493040 | 1523630641 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | i = 1
while 1:
x = input()
if !x: break
print('Case ' i ': ' x)
i += 1
|
s452155148 | p02396 | u244493040 | 1523630683 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | i = 1
while 1:
x = int(input())
if !x: break
print('Case ' i ': ' x)
i += 1
|
s710849352 | p02396 | u244493040 | 1523630794 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | i = 1
while 1:
x = int(input())
if x==0: break
print('Case ' i ': ' x)
i += 1
|
s221896789 | p02396 | u244493040 | 1523630803 | Python | Python3 | py | Runtime Error | 0 | 0 | 89 | i = 1
while true:
x = int(input())
if x==0: break
print('Case ' i ': ' x)
i += 1
|
s437615200 | p02396 | u244493040 | 1523630896 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | i = 1
while true:
x = int(input())
if x==0: break
print('Case {}: {}'.format(i,x))
i += 1
|
s249688360 | p02396 | u244493040 | 1523631022 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | i = 1
while True:
x = int(input())
if !x: break
print("Case {}: {}".format(i, x))
i+=1
|
s217563650 | p02396 | u244493040 | 1523631176 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | i = 1
while True:
x = int(input())
if x: print("Case {}: {}".format(i, x)) else brek
i+=1
|
s763245542 | p02396 | u244493040 | 1523631182 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | i = 1
while True:
x = int(input())
if x: print("Case {}: {}".format(i, x)) else break
i+=1
|
s306977264 | p02396 | u244493040 | 1523631249 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | i = 1
while 1:
if not (x = int(input())): break
print("Case {}: {}".format(i, x))
i+=1
|
s503798146 | p02396 | u244493040 | 1523631492 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | i,x = 0,input()
while x != 0':
print("Case ' i ': ' x)
i,x = i+1, input()
|
s643180012 | p02396 | u244493040 | 1523631526 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | i,x = 0,input()
while x != 0':
print('Case ' i ': ' x)
i,x = i+1, input()
|
s135413215 | p02396 | u244493040 | 1523631566 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | i = 0
x = input()
while x != 0':
print('Case ' i ': ' x)
i+=1
x = input()
|
s702938000 | p02396 | u244493040 | 1523631589 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | i = 0
x = input()
while x != '0':
print('Case ' i ': ' x)
x = input()
i+=1
|
s680802689 | p02396 | u244493040 | 1523631623 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | i = 0
x = input()
while x != "0":
print('Case ' i ': ' x)
x = input()
i+=1
|
s296135102 | p02396 | u244493040 | 1523631663 | Python | Python3 | py | Runtime Error | 0 | 0 | 86 | i = 0
x = input()
while x != "0":
print('Case ' str(i) ': ' x)
x = input()
i+=1
|
s912453563 | p02396 | u244493040 | 1523631908 | Python | Python3 | py | Runtime Error | 0 | 0 | 80 | i,x = '1',input()
while x != "0":
print('Case '+i+': '+x)
i,x = i+1,input()
|
s828801774 | p02396 | u843169619 | 1523873633 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 |
num = 1
While = True:
x = int(input())
if x == 0: break
print ("Case {0}: {1}".format(num,x))
num += 1
|
s417645420 | p02396 | u843169619 | 1523873830 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 |
num = 1
While True:
x = int(input())
if x == 0: break
print ("Case {0}: {1}".format(num,x))
num += 1
|
s372380133 | p02396 | u592529978 | 1524112455 | Python | Python | py | Runtime Error | 0 | 0 | 67 | x = map(int,raw_input().split())
for i in x
print "case i : x"
|
s777038452 | p02396 | u074747865 | 1524124088 | Python | Python3 | py | Runtime Error | 0 | 0 | 47 | for i in input():
print(Case i: int(input()))
|
s906080583 | p02396 | u589139267 | 1524180934 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | i=1
while (True)
x = int(input())
if (x == 0)
break
else
print(Case %d:%d; i, x)
i + 1 = i
|
s129380184 | p02396 | u589139267 | 1524181925 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | i = 1
while True:
x = int(input())
if x==0:
break
else:
print("Case %d: %d".format(i,x))
i += 1
|
s346090976 | p02396 | u589139267 | 1524182146 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | i = 1
while True:
x = int(input())
if x == 0:
break
else:
print("Case %d: %d".format(i,x))
i += 1
|
s560645311 | p02396 | u592529978 | 1524189870 | Python | Python | py | Runtime Error | 0 | 0 | 109 | i=0
while 1:
x = int(input())
if x==0 : break
i+=1
print "case %d: %d" %(i,x)
break
|
s330607522 | p02396 | u648117624 | 1524201375 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | c = 0
while True:
x = int(input()) ; c +=1
if x == 0:
break
else:
print("Case {}: {}.format(c, x))
|
s463751638 | p02396 | u648117624 | 1524201411 | Python | Python3 | py | Runtime Error | 0 | 0 | 123 | c = 0
while True:
x = int(input()) ; c +=1
if x == 0:
break
print("Case {}: {}.format(c, x))
|
s482730623 | p02396 | u648117624 | 1524201585 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | c = 0
while True:
x = int(input())
c +=1
if x == 0:
break
print("Case {}: {}".format(c, x))
|
s113609557 | p02396 | u648117624 | 1524201619 | Python | Python3 | py | Runtime Error | 0 | 0 | 126 | c = 0
while True:
x = int(input()) ; c +=1
if x == 0:
break
print("Case {}: {}".format(c, x))
|
s524026272 | p02396 | u648117624 | 1524201651 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | c = 0
while True:
x = int(input()) ; c +=1
if x == 0:
break
print("Case {}: {}).format(c, x))
|
s104024218 | p02396 | u485986915 | 1524296404 | Python | Python3 | py | Runtime Error | 0 | 0 | 91 | x = list(map(int,input().split()))
n = 1
if x>0:
print("case",n,":",x[n])
n = n+1
|
s068229451 | p02396 | u485986915 | 1524300249 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | n = 1
x = int(input())
while x != 0 :
print("Case {}:{}".format(n,x)
n = n+1
x = int(input())
|
s961467067 | p02396 | u485986915 | 1524300264 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | n = 1
x = int(input())
while x != 0 :
print("Case {}:{}".format(n,x)
n = n+1
x = int(input())
|
s092191455 | p02396 | u485986915 | 1524300360 | Python | Python3 | py | Runtime Error | 0 | 0 | 109 | n = 1
x = int(input())
while x != 0 :
print("Case {} : {}".format(n,x)
n = n+1
x = int(input())
|
s371792905 | p02396 | u836133197 | 1524489650 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | count = 0
while true:
count += 1
a = int(input())
if a == 0:
break
print("Case {}: {}".format(count, a))
|
s148091162 | p02396 | u729486845 | 1524584468 | Python | Python3 | py | Runtime Error | 0 | 0 | 111 | i = 1
while True:
x=map(int,input())
if x=False:
break
print("case ", i , ": ", x)
|
s218637294 | p02396 | u908651435 | 1524744147 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | x=1
while True:
i=input()
print('case {}: {}'.format(x,i))
x+=1
|
s604030360 | p02396 | u908651435 | 1524744404 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | x=1
while True:
i=input()
print('case {}: {}'.format(x,i))
x+=1
if i==0:
break
|
s720745338 | p02396 | u908651435 | 1524744599 | Python | Python3 | py | Runtime Error | 0 | 0 | 106 | i=1
x = int(input())
while x != 0 :
print("Case {0}: {1}".format(i, x))
x = int(input())
i=i+
|
s287180583 | p02396 | u781194524 | 1524813524 | Python | Python3 | py | Runtime Error | 0 | 0 | 65 | i=1
while input()!=0
print("Case " i,":",input())
i += 1
|
s196233667 | p02396 | u781194524 | 1524813549 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | i=1
while input()!=0
print("Case " ,i,":",input())
i += 1
|
s357190609 | p02396 | u781194524 | 1524813594 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | i=1
while input()!=0:
print("Case " ,i,":",input())
i += 1
|
s822645283 | p02396 | u781194524 | 1524813627 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | i=1
while input()!=0:
print("Case " ,i,":",int(input()))
i += 1
|
s267160374 | p02396 | u781194524 | 1524813740 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | i=1
while input()!=0:
x = int(input())
print("Case {0}: {1}",format(i,x))
i += 1
|
s392076033 | p02396 | u952285106 | 1525458675 | Python | Python3 | py | Runtime Error | 0 | 0 | 152 | a = []
while True:
n = input()
if n == 0:
break
a.append(n)
i = 0
for num in a:
print("Case " + (i+1) + ": " + a[i])
i += 1
|
s764721931 | p02396 | u952285106 | 1525459374 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | a = []
while True:
n = int(input())
if n == 0:
break
a.append(n)
i = 0
for i in a:
print("Case " + str(i+1) + ": " + str(a[i]))
i += 1
|
s655067838 | p02396 | u532590372 | 1525498798 | Python | Python3 | py | Runtime Error | 0 | 0 | 95 | i = 0
while True:
i += 1
n = input()
if n = 0: break
print('Case ' +str(i) +':' + n)
|
s970605680 | p02396 | u532590372 | 1525498847 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | i = 0
while True:
i += 1
n = input()
if n = 0: break:
print('Case ' +str(i) +':' + n)
|
s454930100 | p02396 | u532590372 | 1525498939 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | def main():
i = 0
while True:
i += 1
n = input()
if n = 0: break
print('Case ' +str(i) +':' + n)
main()
|
s339228111 | p02396 | u532590372 | 1525499016 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | def main():
i = 0
while True:
i += 1
n = input()
if n == 0: break
print('Case ' +str(i) +':' + n)
main()
|
s427046447 | p02396 | u532590372 | 1525499174 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | def main():
i = 0
while True:
i += 1
n = input()
if n = 0: break
print('Case ' +str(i) +': ' + n)
main()
|
s109631940 | p02396 | u532590372 | 1525499243 | Python | Python3 | py | Runtime Error | 0 | 0 | 122 | def main():
i = 0
while True:
i += 1
n = input()
if n == 0: break
print('Case ' +str(i) +': ' + n)
main()
|
s393233581 | p02396 | u406093313 | 1526366105 | Python | Python3 | py | Runtime Error | 0 | 0 | 149 | i=1
j=1
while 1:
x=int(input)
j=attend()
if x==0:
break
i+=1
while
print(case[0]: [1]) format(i,x)
j+=1
|
s603795197 | p02396 | u406093313 | 1526366186 | Python | Python3 | py | Runtime Error | 0 | 0 | 153 | i=1
j=1
while 1:
x=int(input)
j=attend()
if x==0
break
i+=1
while i<j:
print(case[0]: [1]) format(i,x)
j+=1
|
s463189286 | p02396 | u361028487 | 1526446424 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | i=0
while True:
i+=1
a=input()
if not a:
break
print('Case',i,':',str(a))
|
s074503207 | p02396 | u361028487 | 1526446563 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | i=0
while True:
i+=1
a=input().split()
if not a:
break
print('Case',i,':',a[0])
del a[0]
|
s342108330 | p02396 | u527389300 | 1526662211 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | c = 0
while true:
x = int(input())
c += 1
if x == 0:
break
print("Case {}: {}".format(c,x))
|
s904264612 | p02396 | u637927800 | 1526852488 | Python | Python3 | py | Runtime Error | 0 | 0 | 168 | x = []
while True:
u = input()
if u is '':
break
else:
x.append(int(u))
for i, n in enumerate(x):
print('Case {}: {}'.format(i+1,n))
|
s499441476 | p02396 | u237094818 | 1527429538 | Python | Python | py | Runtime Error | 0 | 0 | 163 | # -*- coding: utf-8
a = []
while True:
n = input():
if n == 0:
break
a.append(n)
for i in range(len(a)):
print('Case %i: %i' % (i+1,a[i]))
|
s657455916 | p02396 | u007066325 | 1527453884 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | a = 0
while input() != 0:
a += 1
print ("Case {}: {}".format(a. input()))
|
s427523303 | p02396 | u007066325 | 1527454022 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | a = 0
while True:
x = int(input())
a += 1
if x == 0: break
print ("Case {}: {}".format(a. input()))
|
s308032200 | p02396 | u007066325 | 1527454075 | Python | Python3 | py | Runtime Error | 0 | 0 | 110 | a = 0
while True:
x = int(input())
a += 1
if x == 0: break
print ("Case {}: {}".format(a. x))
|
s443431614 | p02396 | u487330611 | 1527556178 | Python | Python | py | Runtime Error | 0 | 0 | 115 | num=1
while True;
x= int(input())
if x==0; break
print ("Case{0}:{1}". fromat(num,x))
num +=1
|
s023176105 | p02396 | u990900604 | 1527779388 | Python | Python | py | Runtime Error | 0 | 0 | 192 | import sys
if __name__ == '__main__':
i = 1
for line in sys.stdin.read().splitlines():
if line == '0':
break
print "Case %d: %s" % (i, line)
i +=
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.