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-9.cpp
john
first commit
c4b0eef
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
160 Bytes
#
include
<bits/stdc++.h>
using
namespace
std;
int
main
()
{
int
v, t;
while
(
scanf
(
"%d %d"
, &v, &t) ==
2
)
printf
(
"%d\n"
, v * t *
2
);
return
(
0
);
}