#include<iostream.h>
#include<conio.h>
void main()
{
clrscr();
int km,pet;
cout<<"Enter total kilometer which you want to
travel ::";
cin>>km;
pet=km/12;
cout<<"You should must have
"<<pet<<" liter petrol.";
getch();
}