Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
slayone
/
uva_spoj_raw
like
0
Tasks:
Translation
Text Generation
Size:
1K<n<10K
Tags:
code
License:
mit
Dataset card
Files
Files and versions
Community
main
uva_spoj_raw
/
uva_cpp_clean
/
10071
/
10071-19.cpp
john
first commit
c4b0eef
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
138 Bytes
#
include
<cstdio>
using
namespace
std;
int
main
()
{
int
v, t;
while
(
scanf
(
"%d %d"
, &v, &t) != EOF)
printf
(
"%d\n"
,
2
*v*t);
return
0
;
}