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-3.cpp
john
first commit
c4b0eef
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
132 Bytes
#
include
<cstdio>
int
main
()
{
int
v, t, x;
while
(
scanf
(
"%d %d"
,&v, &t) != EOF )
{
x =
2
* t * v;
printf
(
"%d\n"
, x);
}
}