Submission #3423100


Source Code Expand

#include <bits/stdc++h>
using namespace std;
int main(){
 
  vector <int> a(3);
  for(int e:a) cin>>e;
  
  sort(a.begin(),a.end());
  
  cout<<a[2]-a[0]<<endl;
}

Submission Info

Submission Time
Task A - Task Scheduling Problem
User Lilly
Language C++14 (GCC 5.4.1)
Score 0
Code Size 172 Byte
Status CE

Compile Error

./Main.cpp:1:24: fatal error: bits/stdc++h: No such file or directory
 #include <bits/stdc++h>
                        ^
compilation terminated.