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 |
|---|---|---|---|---|---|---|---|---|---|---|---|
s404040230 | p02396 | u428848588 | 1559538711 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | while True:
x,y =map(int, input().split())
if x==0 and y==0:
break
if x>y:
print(y,x)
else:
print(x,y)
|
s773885569 | p02396 | u428848588 | 1559538877 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | c=1
while True:
if x ==0:
break
print("Case ",c,": ",x,sep="")
c += 1
|
s564866806 | p02396 | u296492699 | 1404738064 | Python | Python | py | Runtime Error | 0 | 0 | 101 | i=0
while True:
i+=1
x=raw_input()
if x==0:
break
print 'Case %d: %d' % (i,x) |
s524706588 | p02396 | u296492699 | 1404738097 | Python | Python | py | Runtime Error | 0 | 0 | 103 | i=0
while True:
i+=1
x=raw_input()
if x=='0':
break
print 'Case %d: %d' % (i,x) |
s391982813 | p02396 | u792834675 | 1415802238 | Python | Python | py | Runtime Error | 0 | 0 | 108 | i = 0
while 1:
i+=1
v = raw_input()
if not v:
break
print ('Case {}: {}'.format(i,v)) |
s217662907 | p02396 | u481221703 | 1418867213 | Python | Python | py | Runtime Error | 0 | 0 | 121 | import os
import sys
for i,n in enumerate(int(sys.stdin.readlines())):
if n!=0:
print "Case %d: %d" % (i, n) |
s410898817 | p02396 | u481221703 | 1418867438 | Python | Python | py | Runtime Error | 0 | 0 | 171 | import os
import sys
lists = []
for n in sys.stdin.readlines()):
lists.append(int(n))
for i, n in enumerate(lists):
if n!=0:
print "Case %d: %d" % (i, n) |
s694935412 | p02396 | u481221703 | 1419460741 | Python | Python | py | Runtime Error | 0 | 0 | 151 | import sys
lists = sys.stdin().readlines()
for i, int(line) in enumerate(lists):
if(line[i]!=0):
print "Case %d: %d" % (i, line[i])
else:
break |
s757471635 | p02396 | u567380442 | 1419918471 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | i = 1
while True:
input = int(input())
if input == 0:
break
print("Case {}: {}, i, input)
i += 1 |
s126804794 | p02396 | u567380442 | 1419918594 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | i = 1
while True:
input = int(input())
if input == 0:
break
print("Case {}: {}", i, input)
i += 1 |
s610402934 | p02396 | u567380442 | 1419918761 | Python | Python3 | py | Runtime Error | 0 | 0 | 129 | i = 1
while True:
input = int(input())
if input == 0:
break
print("Case {}: {}".format( i, input))
i += 1 |
s657610923 | p02396 | u567380442 | 1419919203 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | i = 1
while True:
input = int(input())
if input == 0: break
print("Case {}: {}".format(i, input))
i += 1 |
s788778674 | p02396 | u567380442 | 1419924936 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | i = 1
while True:
input = input()
if input == '0': break
print("Case {}: {}".format(i, input))
i += 1 |
s269530340 | p02396 | u567380442 | 1419925092 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | i = 1
while True:
input = input()
if input == '0':
break
print("Case {}: {}".format(i, input))
i += 1 |
s714794274 | p02396 | u567380442 | 1419927835 | Python | Python3 | py | Runtime Error | 0 | 0 | 164 | import sys, itertools
for count, input in zip(itertools.count(1), sys.stdin):
if int(input) == 0:
break
print('Case {0}: {1}'.format(count, input) |
s351839549 | p02396 | u527848444 | 1422242448 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | c == 0
while True:
x = int(input())
if x == 0:
break;
c += 1
print('Case',str(c) + ':',x) |
s179902564 | p02396 | u636711749 | 1422242449 | Python | Python3 | py | Runtime Error | 0 | 0 | 107 | while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case',str(c) + ':',x) |
s335652111 | p02396 | u745846646 | 1422242456 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | c = 0
while True:
x = int(input())
if x == 0;
break;
c += 1
print('Case', str(c) + ':', x) |
s352617465 | p02396 | u745846646 | 1422242467 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | c = 0
while True:
x = int(input())
if x == 0;
break:
c += 1
print('Case', str(c) + ':', x) |
s879902399 | p02396 | u527848444 | 1422242478 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | c == 0
while True:
x = int(input())
if x == 0:
break;
c += 1
print('Case',str(c) + ':',x) |
s153271720 | p02396 | u636711749 | 1422242502 | Python | Python3 | py | Runtime Error | 0 | 0 | 113 | c = 0
while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case',str(c) + ':',x) |
s996757433 | p02396 | u527848444 | 1422242530 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | c == 0
While True:
x = int(input())
if x == 0:
break;
c += 1
print('Case',str(c) + ':',x) |
s910835241 | p02396 | u636711749 | 1422244262 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | c = 0
while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case', str(c) + ':', x) |
s734973694 | p02396 | u636711749 | 1422244318 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | c = 0
while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case', str(c) + ':', x) |
s571616573 | p02396 | u636711749 | 1422244497 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | c = 0
while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case', str(c) + ':', x) |
s747484925 | p02396 | u636711749 | 1422244528 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | c = 0
while True:
x == int(input())
if x == 0:
break;
c += 1
print('Case', str(c) = ':', x) |
s974917630 | p02396 | u823030818 | 1422406680 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | c = 0
while True:
x = int(input())
if x == 0:
break:
print('Case [0]: [1]'.format(c, x))
c += 1 |
s864051148 | p02396 | u823030818 | 1422406733 | Python | Python3 | py | Runtime Error | 0 | 0 | 120 | c = 0
while True:
x = int(input())
if x == 0:
break:
print('Case [0]: [1]'.format(c, x))
c += 1 |
s793213695 | p02396 | u823030818 | 1422406877 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | c = 1
while True:
x = int(input())
if x == 0:
break
print('Case [0]: [1]'.format(c, x))
c += 1 |
s601803175 | p02396 | u823030818 | 1422406945 | Python | Python3 | py | Runtime Error | 0 | 0 | 124 | c = 1
while True:
x = int(input())
if x == 0:
break
print('Case {0}: {1}'.format(c, x))
c += 1 |
s665695035 | p02396 | u823030818 | 1422406980 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | c = 1
while True:
x = int(input())
if x == 0:
break
print('Case {0}: {1}'.format(c, x))
c += 1: |
s227927525 | p02396 | u823030818 | 1422407017 | Python | Python3 | py | Runtime Error | 0 | 0 | 125 | c = 1
while True:
x = int(input())
if x == 0:
break
print('Case {0}: {1}'.format(c, x))
c += 1: |
s454651272 | p02396 | u879226672 | 1423052675 | Python | Python | py | Runtime Error | 0 | 0 | 110 | i = 0
while True:
x = raw_input()
if x == 0:
break
i += 1
print "Case %d: %d" % (i, x) |
s090423467 | p02396 | u879226672 | 1423052763 | Python | Python | py | Runtime Error | 0 | 0 | 141 | i = 0
while True:
x = int(raw_input())
if x == 0:
break
i += 1
i=str(i)
x=str(x)
print "Case %d: %d" % (i, x) |
s705822998 | p02396 | u088816384 | 1425146707 | Python | Python3 | py | Runtime Error | 0 | 0 | 165 | x_list = []
while 1:
x = input()
x_list.append(x)
if x == 0:
break
for x in x_list:
if x == 0:
break
print "Case " + str(x_list.index(x)+1) + ": " + str(x) |
s458377703 | p02396 | u137212517 | 1429542491 | Python | Python3 | py | Runtime Error | 0 | 0 | 103 | import sys
for i, x in map(int, sys.stdin):
if not x: break
print("Case {0}: {1}".format(i, x)) |
s698171661 | p02396 | u410785272 | 1434326060 | Python | Python3 | py | Runtime Error | 0 | 0 | 39 | if x!=0
print ('Case %d: %d' % (i, x)) |
s146938718 | p02396 | u172616925 | 1435312922 | Python | Python | py | Runtime Error | 0 | 0 | 95 | i = 0
while 1:
x = raw_input()
i += 1
if x == "0":
break
print "Case %d: %d" % i,x |
s113101254 | p02396 | u172616925 | 1435312985 | Python | Python | py | Runtime Error | 0 | 0 | 97 | i = 0
while 1:
x = raw_input()
i += 1
if x == "0":
break
print "Case %d: %d" % (i,x) |
s504053813 | p02396 | u172616925 | 1435313025 | Python | Python | py | Runtime Error | 0 | 0 | 95 | i = 0
while 1:
x = raw_input()
i += 1
if x == '0':
break
print "Case %d: %d" % i,x |
s436998033 | p02396 | u172616925 | 1435313063 | Python | Python | py | Runtime Error | 0 | 0 | 95 | i = 0
while 1:
x = raw_input()
i += 1
if x == "0":
break
print "Case %s: %s" % i,x |
s231592811 | p02396 | u446066125 | 1436753736 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | count = 1
whie (true) :
x = input().strip()
if x == '0' :
break;
print('Case %s: %s',(count,x))
count += 1; |
s108477156 | p02396 | u446066125 | 1436753759 | Python | Python3 | py | Runtime Error | 0 | 0 | 133 | count = 1
whie (true) :
x = input().strip()
if x == '0' :
break;
print('Case %s: %s',%(count,x))
count += 1; |
s517276916 | p02396 | u446066125 | 1436753785 | Python | Python3 | py | Runtime Error | 0 | 0 | 132 | count = 1
whie (true) :
x = input().strip()
if x == '0' :
break;
print('Case %s: %s'%(count,x))
count += 1; |
s695410676 | p02396 | u446066125 | 1436753833 | Python | Python3 | py | Runtime Error | 0 | 0 | 139 | count = 1
whie (true) :
x = input().strip()
if x == '0' :
break;
print('Case %s: %s'%(count,x))
count = count + 1; |
s900437244 | p02396 | u446066125 | 1436753864 | Python | Python3 | py | Runtime Error | 0 | 0 | 138 | count = 1
whie (true) :
x = input().strip()
if x == '0' :
break
print('Case %s: %s'%(count,x))
count = count + 1; |
s288491679 | p02396 | u614711522 | 1437958382 | Python | Python3 | py | Runtime Error | 0 | 0 | 92 | nums = input().split()
i = 0
while i < nums.length:
print( Case, i, nums[i])
i += 1 |
s717446846 | p02396 | u614711522 | 1437958479 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | nums = int( input().split())
i = 0
while i < nums.length:
print( Case, i, nums[i])
i += 1 |
s189431222 | p02396 | u527848444 | 1437960084 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | count = 1
while True:
????????x = input().strip()
????????if x == '0':
????????????????break
????????print('Case %s: %s' % (count, x))
????????count = count + 1 |
s996939146 | p02396 | u527848444 | 1437960123 | Python | Python3 | py | Runtime Error | 0 | 0 | 160 | count = 1
while True:
????????x = input().strip()
????????if x == '0':
????????????????break
????????print('Case %s: %s' % (count, x))
????????count = count + 1 |
s898746822 | p02396 | u381433575 | 1438060060 | Python | Python | py | Runtime Error | 0 | 0 | 133 | import warnings
for i in range(99999999):
data = input()
if(data == 0):
break
else:
print "Case " + str(i) + ": " + str(data) |
s144298587 | p02396 | u614711522 | 1438562382 | Python | Python3 | py | Runtime Error | 0 | 0 | 151 | count = 1
while True:
x = input().strip()
if x == '0':
break
else:
print( 'Case {0}: {1}'.format( i, x))
count += 1 |
s112852647 | p02396 | u614711522 | 1438562477 | Python | Python3 | py | Runtime Error | 0 | 0 | 157 | count = 1
while True:
x = int( input().strip())
if x == '0':
break
else:
print( 'Case {0}: {1}'.format( i, x))
count += 1 |
s887701389 | p02396 | u614711522 | 1438562523 | Python | Python3 | py | Runtime Error | 0 | 0 | 161 | count = 1
while True:
x = int( input().strip())
if x == '0':
break
else:
print( 'Case {0}: {1}'.format( count, x))
count += 1 |
s727371193 | p02396 | u255164080 | 1438562933 | Python | Python3 | py | Runtime Error | 0 | 0 | 172 | while True:
(x, y) = [int(i) for i in input().split()]
if x == 0:
break
if x > y:
a = y
y = x
x = a
print(x, y) |
s963276612 | p02396 | u473077745 | 1439784959 | Python | Python3 | py | Runtime Error | 0 | 0 | 115 | count = 1
while True:
x = input().strip()
if x == '0':
break
print('Case %s: %s' % (count, x))
count = count + 1 |
s396947195 | p02396 | u473077745 | 1439795377 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | count = 1
while True:
x = input().strip()
if x == '0':
break
print('Case %s: %s' % (count, x))
count = count + 1 |
s344671226 | p02396 | u722558010 | 1440658772 | Python | Python3 | py | Runtime Error | 0 | 0 | 114 | import sys
n=1
ff=map(input().split())
for i in ff:
if i==0:
break
print("Case {0}: {1},".format(n,i))
n=n+1 |
s298949075 | p02396 | u722558010 | 1440659230 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | n=1
ff=map(input().splitlines())
for i in ff:
if i==0:
break
print("Case {0}: {1},".format(n,i))
n=n+1 |
s212297095 | p02396 | u335511832 | 1440661805 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | while True:
for x,i in enumerate(input())
print('Case {0}: {1}'.format(x,y)) |
s288906721 | p02396 | u969115822 | 1442302724 | Python | Python | py | Runtime Error | 0 | 0 | 155 | nums []
num = input()
nums.append(num)
while num != 0:
num = input()
nums.append(num)
for i in range(len(nums)):
print "case %d: %d" %(i + 1, nums[i]) |
s511670875 | p02396 | u126202702 | 1443024247 | Python | Python | py | Runtime Error | 0 | 0 | 119 | a=[]
while True:
a=input()
if a==0:
break
a.append(input())
i=1
for num in a:
print 'Case {0}: {1}'.format(i,num) |
s431601752 | p02396 | u224288634 | 1444130144 | Python | Python | py | Runtime Error | 0 | 0 | 95 | i = 1
while True :
n = input()
if n==0 :
break
else :
print('Case %d: %d' % (i,n)
i += 1 |
s230728844 | p02396 | u224288634 | 1444130199 | Python | Python | py | Runtime Error | 0 | 0 | 94 | i = 1
while True :
n = input()
if n==0 :
break
else :
print'Case %d: %d' % (i,n)
i += 1 |
s669366832 | p02396 | u139034459 | 1445708593 | Python | Python | py | Runtime Error | 0 | 0 | 177 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = int(row_input())
count = 0
while var != 0:
count += 1
print "Case " + str(count) + ": " + str(var)
var = int(row_input()) |
s333032161 | p02396 | u139034459 | 1445708850 | Python | Python | py | Runtime Error | 0 | 0 | 234 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = int(row_input())
count = 0
while var != 0:
pre[count] = var
count += 1
var = int(row_input())
count = 1
for item in pre
print "Case " + str(count) + ": " +str(item)
count += 1 |
s127485366 | p02396 | u139034459 | 1445708959 | Python | Python | py | Runtime Error | 0 | 0 | 235 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = int(row_input())
count = 0
while var != 0:
pre[count] = var
count += 1
var = int(row_input())
count = 1
for item in pre:
print "Case " + str(count) + ": " +str(item)
count += 1 |
s826017970 | p02396 | u139034459 | 1445779961 | Python | Python | py | Runtime Error | 0 | 0 | 251 | #!/usr/bin/env python
# -*- coding: utf-8 -*-
var = int(row_input())
count = 0
while var != 0:
pre[count] = var
count += 1
var = int(row_input())
count = 1
while pre[count-1] != 0:
print "Case " + str(count) + ": " +str(pre[count-1])
count += 1 |
s912367513 | p02396 | u663227983 | 1452516640 | Python | Python | py | Runtime Error | 0 | 0 | 72 | n = 10
while n != 0:
n = input()
print "Case " + str(i) + ": " +str(n) |
s539909170 | p02396 | u663227983 | 1452516647 | Python | Python | py | Runtime Error | 0 | 0 | 72 | n = 10
while n != 0:
n = input()
print "Case " + str(i) + ": " +str(n) |
s486059913 | p02396 | u663227983 | 1452516661 | Python | Python | py | Runtime Error | 0 | 0 | 76 | n = 10
while n != 0:
n = raw_input()
print "Case " + str(i) + ": " +str(n) |
s519533985 | p02396 | u663227983 | 1452516699 | Python | Python | py | Runtime Error | 0 | 0 | 93 | n = 10
i = 1
while n != 0:
n = raw_input()
i = i + 1
print "Case " + str(i) + ": " +str(n) |
s156500348 | p02396 | u393769849 | 1453255077 | Python | Python | py | Runtime Error | 0 | 0 | 88 |
for i in range(n)
i += 1
x = input()
if x == 0:
break:
print "case %d: %d" %(i x) |
s187639325 | p02396 | u393769849 | 1453255270 | Python | Python | py | Runtime Error | 0 | 0 | 88 | i = 0
while True:
i += 1
x = input()
if x == 0:
break:
print "case %d: %s" %(i x) |
s471302308 | p02396 | u393769849 | 1453255386 | Python | Python | py | Runtime Error | 0 | 0 | 94 | i = 0
while True:
i += 1
x = raw_input()
if x == 0:
break:
print "case %d: %s" % (i, x) |
s026497024 | p02396 | u393769849 | 1453255414 | Python | Python | py | Runtime Error | 0 | 0 | 96 | i = 0
while True:
i += 1
x = raw_input()
if x == "0":
break:
print "case %d: %s" % (i, x) |
s489411391 | p02396 | u393769849 | 1453255909 | Python | Python | py | Runtime Error | 0 | 0 | 101 | i = 0
while True:
i += 1
x = raw_input()
if x == '0':
break
print 'case %d: %s' % (i,x) |
s805924950 | p02396 | u393769849 | 1453255930 | Python | Python | py | Runtime Error | 0 | 0 | 104 | i=0
while True:
i+=1
x=raw_input()
if x=='0':
break
print 'Case %d: %s' % (i,x) |
s961717534 | p02396 | u393769849 | 1453255965 | Python | Python | py | Runtime Error | 0 | 0 | 108 | i = 1
while 1:
x = raw_input()
if x == '0':
break
print 'Case %d: %s' % (i, x)
i+=1 |
s906964861 | p02396 | u393769849 | 1453255999 | Python | Python | py | Runtime Error | 0 | 0 | 206 |
import sys
for i,ws in enumerate(sys.stdin, 1):
w = ws[:-1]
if w =='0': break
print 'Case %d: %s' % (i, w)
Compile Error Logs:
You are not authorized to see the message.
Status
|
s729635474 | p02396 | u047737909 | 1453256967 | Python | Python | py | Runtime Error | 0 | 0 | 114 | m = map(int,raw_input().split())
for i in range(1,len(m)+1)
if(m[i-1]==0)
break
print"Case %d* %d",%(i,m[i-1]) |
s714917822 | p02396 | u047737909 | 1453257128 | Python | Python | py | Runtime Error | 0 | 0 | 116 | m = map(int,raw_input().split())
for i in range(1,len(m)+1):
if(m[i-1]==0):
break
print"Case %d* %d",%(i,m[i-1]) |
s014178413 | p02396 | u047737909 | 1453257157 | Python | Python | py | Runtime Error | 0 | 0 | 114 | m = map(int,raw_input().split())
for i in range(len(m)+1):
if(m[i-1]==0):
break
print"Case %d* %d",%(i,m[i-1]) |
s421472564 | p02396 | u047737909 | 1453257262 | Python | Python | py | Runtime Error | 0 | 0 | 114 | m = map(int,raw_input().split())
for i in range(len(m)+1):
if(m[i-1]==0):
break
print"Case %s* %s",%(i,m[i-1]) |
s922962776 | p02396 | u047737909 | 1453257380 | Python | Python | py | Runtime Error | 0 | 0 | 114 | m = map(int,raw_input().split())
for i in range(len(m)+1):
if(m[i-1]==0):
break
print"Case %s* %s",%(i,m[i-1]) |
s810574765 | p02396 | u047737909 | 1453257433 | Python | Python | py | Runtime Error | 0 | 0 | 107 | m = map(int,raw_input().split())
for i in range(1):
if(m[i-1]==0):
break
print"Case %s* %s",%(i,m[i-1]) |
s565106657 | p02396 | u047737909 | 1453257472 | Python | Python | py | Runtime Error | 0 | 0 | 112 | m = map(int,raw_input().split())
for i in range(len(m)):
if(m[i-1]==0):
break
print"Case %s* %s",%(i,m[i-1]) |
s365837507 | p02396 | u834416077 | 1453257512 | Python | Python | py | Runtime Error | 0 | 0 | 77 | i = 1
n = 1
while n > 0:
n = input()
print "Cace %d: %d" % (i, n)
i++ |
s446991450 | p02396 | u047737909 | 1453257527 | Python | Python | py | Runtime Error | 0 | 0 | 112 | m = map(int,raw_input().split())
for i in range(len(m)):
if(m[i]==0):
break
print"Case %s* %s",%((i+1),m[i]) |
s389144983 | p02396 | u803327846 | 1453257694 | Python | Python | py | Runtime Error | 0 | 0 | 89 | x = map(int, raw_input().split())
for i in range():
print "case %d: %d" %(i + 1, x[i]) |
s050455933 | p02396 | u834416077 | 1453257721 | Python | Python | py | Runtime Error | 0 | 0 | 89 | i = 1
while 1:
n = input()
if n == 0:
break:
print "Cace %d: %d" % (i, n)
i++ |
s020108498 | p02396 | u824204304 | 1453257774 | Python | Python | py | Runtime Error | 0 | 0 | 101 | i = 0
while 1:
x = raw_input()
i += 1
if x == 0:
break
print "Case %s : %s" % (i,x) |
s451631542 | p02396 | u824204304 | 1453257793 | Python | Python | py | Runtime Error | 0 | 0 | 101 | i = 0
while 1:
x = raw_input()
i += 1
if x == 0:
break
print "Case %s : %s" % (i,x) |
s858005467 | p02396 | u456885296 | 1453257821 | Python | Python | py | Runtime Error | 0 | 0 | 85 | i=0
while 1:
x = input()
if x == 0:
break
i+=1
print "Case %d:%d" % (i,x) |
s599957518 | p02396 | u803327846 | 1453257846 | Python | Python | py | Runtime Error | 0 | 0 | 121 | x = map(int, raw_input().split())
i = 1
while(1):
if x[i] == 0:
break
print "Case %d: %d" %(i + 1, x[i])
i += 1 |
s481108779 | p02396 | u824204304 | 1453257876 | Python | Python | py | Runtime Error | 0 | 0 | 100 | i = 0
while 1:
x = raw_input()
i += 1
if x == 0:
break
print "Case %s: %s" % (i,x) |
s369715293 | p02396 | u803327846 | 1453257907 | Python | Python | py | Runtime Error | 0 | 0 | 94 | i = 1
while(1):
x = raw_input()
if x == 0:
break
print "Case %d: %d" %(i,x)
i += 1 |
s351310143 | p02396 | u613805578 | 1453257909 | Python | Python | py | Runtime Error | 0 | 0 | 128 | sum = 0
while true:
x = raw.input()
sum = sum + 1
if x == 0:
break;
for i in range(0,sum):
print "Case sum: x" |
s191358815 | p02396 | u803327846 | 1453257933 | Python | Python | py | Runtime Error | 0 | 0 | 94 | i = 1
while(1):
x = raw_input()
if x == 0:
break
print "Case %d: %d" %(i,x)
i += 1 |
s658251869 | p02396 | u834416077 | 1453257980 | Python | Python | py | Runtime Error | 0 | 0 | 94 | i = 1
while 1:
n = input()
if n == 0:
break
print "Case %d: %d" % (i,n):
i = i + 1 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.